From 2a6bfe383e21af1bff88d7ae6f98ee62bb749671 Mon Sep 17 00:00:00 2001 From: Dmitry Shalnoff Date: Thu, 6 Jan 2022 14:24:10 +0100 Subject: [PATCH 1/1] initial commit --- FIRMWARE/beep.c | 22 + FIRMWARE/flash | 10 + FIRMWARE/fuses | 1 + FIRMWARE/make | 16 + FIRMWARE/pwm.c | 25 + FIRMWARE/rfrx.c | 589 ++ FIRMWARE/rfrx.elf | Bin 0 -> 13604 bytes FIRMWARE/rfrx.hex | 334 + FIRMWARE/rfrx.map | 739 ++ FIRMWARE/rfrx.o | Bin 0 -> 15320 bytes FIRMWARE/rx433.c | 133 + FIRMWARE/uart.c | 265 + HARDWARE/RF_RX.kicad_pcb | 14991 +++++++++++++++++++++++++++++++++++++ HARDWARE/RF_RX.kicad_prl | 77 + HARDWARE/RF_RX.kicad_pro | 477 ++ HARDWARE/RF_RX.kicad_sch | 5445 ++++++++++++++ HARDWARE/RF_RX.net | 1246 +++ README.md | 54 + 18 files changed, 24424 insertions(+) create mode 100644 FIRMWARE/beep.c create mode 100644 FIRMWARE/flash create mode 100644 FIRMWARE/fuses create mode 100644 FIRMWARE/make create mode 100644 FIRMWARE/pwm.c create mode 100644 FIRMWARE/rfrx.c create mode 100644 FIRMWARE/rfrx.elf create mode 100644 FIRMWARE/rfrx.hex create mode 100644 FIRMWARE/rfrx.map create mode 100644 FIRMWARE/rfrx.o create mode 100644 FIRMWARE/rx433.c create mode 100644 FIRMWARE/uart.c create mode 100644 HARDWARE/RF_RX.kicad_pcb create mode 100644 HARDWARE/RF_RX.kicad_prl create mode 100644 HARDWARE/RF_RX.kicad_pro create mode 100644 HARDWARE/RF_RX.kicad_sch create mode 100644 HARDWARE/RF_RX.net create mode 100644 README.md diff --git a/FIRMWARE/beep.c b/FIRMWARE/beep.c new file mode 100644 index 0000000..0917962 --- /dev/null +++ b/FIRMWARE/beep.c @@ -0,0 +1,22 @@ +#define BEEP_LEN 500 +#define BEEP_REPEAT_PAUSE 10 + +uint8_t beeper_mask; +uint8_t beeper_mask_clock = 0; + +void beep_handler( void ){ + + static uint8_t beeper_cnt = 0; + static uint16_t beeper_mask_cnt = 0; + + if ( beeper_cnt++ % 4 == 0 && beeper_mask != 0 ){ + + if( beeper_mask_cnt++ < BEEP_LEN ) { // 0.1s in periods of timer + if(beeper_mask & 1) output_toggle(PORTA, BEEP); else output_low(PORTA, BEEP); + } else { + output_low(PORTA, BEEP); + beeper_mask_cnt = 0; + beeper_mask >>= 1; + } + } +} diff --git a/FIRMWARE/flash b/FIRMWARE/flash new file mode 100644 index 0000000..63ebeec --- /dev/null +++ b/FIRMWARE/flash @@ -0,0 +1,10 @@ +#!/bin/bash + +targetProjectFile=rfrx + +avrdude -p attiny84 -U flash:w:$targetProjectFile.hex -c avrisp2 -P usb -u -B 20 + + + + + diff --git a/FIRMWARE/fuses b/FIRMWARE/fuses new file mode 100644 index 0000000..3b4577e --- /dev/null +++ b/FIRMWARE/fuses @@ -0,0 +1 @@ +âßÿÿ \ No newline at end of file diff --git a/FIRMWARE/make b/FIRMWARE/make new file mode 100644 index 0000000..021b5c7 --- /dev/null +++ b/FIRMWARE/make @@ -0,0 +1,16 @@ +#!/bin/bash + +targetProjectFile=rfrx + +export DEFINES="-mmcu=attiny84 -DF_CPU=16000000UL -DBOARD=1 -fno-strict-aliasing" + +# export PATH=$PATH:/usr/local/avr/bin + +rm *.hex *.elf + +# /usr/local/avr/bin/avr-gcc + +avr-gcc $DEFINES -Wall -O1 -std=gnu99 -o $targetProjectFile.o -c $targetProjectFile.c +avr-gcc $DEFINES -Wl,-Map=$targetProjectFile.map $targetProjectFile.o -o $targetProjectFile.elf +avr-objcopy -O ihex -R .eeprom $targetProjectFile.elf $targetProjectFile.hex + diff --git a/FIRMWARE/pwm.c b/FIRMWARE/pwm.c new file mode 100644 index 0000000..2b26413 --- /dev/null +++ b/FIRMWARE/pwm.c @@ -0,0 +1,25 @@ + +void pwm_handler(void){ + + static uint8_t cnt_pwm = 0; + + if (cnt_pwm == 0 ) output_high(PORTB, PWM); + if (cnt_pwm == PWM_scale * PWM_MAX / 100 ) output_low(PORTB, PWM); + if (cnt_pwm++ == PWM_MAX) cnt_pwm = 0; + +} + +void pwm_scale_handler( void ){ + + static uint8_t PWM_scale_cnt = 0; + + if ( PWM_scale_flag && PWM_scale_cnt++ % 32 == 0 ){ + if ( PWM_scale_target > PWM_scale ) PWM_scale++; + else if ( PWM_scale_target < PWM_scale ) PWM_scale--; + else if ( PWM_scale_target == PWM_scale ) PWM_scale_flag = false; + + if ( CIEL8[ PWM_scale ] == 0 ) TCCR0A &=~ (1< +#include +#include +#include +#include + +#include + +#include + + +// pin definition + +#define RX PA7 // pin 5 +#define TX PA6 // pin 6 + +#define RX433 PA3 +#define BEEP PA5 + +// macros that makes the code readable + +#define output_low(port,pin) port &= ~(1<= 10 ; div *= 10); + + do { + putch( 48 + (( num / div ) % 10 )); + div /= 10; + } while ( div > 0 ); + +} + +// print integer in binary format + +void put_bin( uint32_t num, uint8_t len ){ // max 64 bit + + for (uint8_t pos = len; pos > 0; pos--) putch( ( (num & (1 << (pos-1))) >> (pos-1) ) + 48 ); + +} + +// length of string + +uint8_t strlen_(char *s){ + + uint8_t l=0; + +// while ( s1[l++] != 0 || l > SRX_STR_MAX ); + while ( *s ) { l++; s++; } + return l; +/* + while(*s!='\0') { + l++; + s++; + } + return l; +*/ +} + +// math power + +uint32_t pow_(uint8_t a, uint8_t b) { + + uint8_t c; + uint32_t r = a; + for (c=0; c 57 ) { num /= 10; break; } + num += (uint32_t)(c[i]-48) * pow_(10,ln-i-1); + } + return num; +} + +// binary string to integer + +uint32_t atob_(char * c, uint8_t i) { + + uint32_t num=0; + while( i-- ) if ( c[i] == 48 ) set_bit_0(num, i); else set_bit_1(num, i); + + return num; +} + +/** + * hex2int + * take a hex string and convert it to a 32bit number (max 8 hex digits) + */ + +uint32_t hex2int(char *hex) { + uint32_t val = 0; + while (*hex) { + // get current character then increment + uint8_t byte = *hex++; + // transform hex character to the 4bit equivalent number, using the ascii table indexes + if (byte >= '0' && byte <= '9') byte = byte - '0'; + else if (byte >= 'a' && byte <='f') byte = byte - 'a' + 10; + else if (byte >= 'A' && byte <='F') byte = byte - 'A' + 10; + else break; + // shift 4 to make space for new digit, and add the 4 bits of the new digit + val = (val << 4) | (byte & 0xF); + } + return val; +} + +// ---------------------------------------- + +// 'kills time' in a calibrated method + +void delay_ms(uint8_t ms) { + + uint16_t delay_count = F_CPU / 17500; + volatile uint16_t i; + + while (ms != 0) { + for (i=0; i != delay_count; i++); + ms--; + } +} + +// --------------- PWM -------------------- + +/* +void initFreqTimer( void ){ // with PWM (doesn't work by some reason with OCIE0B interrupt) + + // init pwm + + // PWM on pin PB2 (OC0A which is on 8-bit timer0) + // For 8MHz clock: 61.2kHz period (16.25ms) of which half is on and half is off + + DDRB = 1<>= 1; + } + } + + sei(); +} + +// ---------------------- simple UART TX ----------------------- + +#define UART2_TX PA2 + +void put_char2( uint8_t c ){ + + c = ~c; + + output_low( PORTA, UART2_TX ); + + cli(); + for( uint8_t i = 10; i; i-- ){ // 10 bits + + _delay_us( 1000000 / 9600 ); // bit duration / (8MHz, 9600, 104 us) Delay 832 cycles + + if( c & 1 ) output_low( PORTA, UART2_TX ); else output_high( PORTA, UART2_TX ); // data bit 0 / data bit 1 or stop bit + c >>= 1; + } + sei(); +} + +void put_str_P2(PGM_P str){ + static PGM_P s; + s=str; + while (pgm_read_byte(s)) put_char2( pgm_read_byte(s++) ); +} + + +// ---------------------------------------- +// --------------- main ------------------- +// ---------------------------------------- + +int main(void) { + + uint8_t i = 0, j=0; + uint16_t val = 0; + uint64_t a = 1; + + uint8_t lastReboot = MCUSR; + MCUSR = 0; + + wdt_enable(WDTO_2S); + + // calculate exponential lookup array for PWM + +/* + for (uint8_t a = 1; a < PWMSTEPS; a++) CIEL8[ a ] = round( pow( PWM_PERIOD, a / (PWMSTEPS-1) ) ); + CIEL8[ 0 ] = 0; +*/ + + + // beep output init + set_output(DDRA, BEEP); + + // PWM oputput init + set_output(DDRB, PWM); + + // freq oputputs init + +// for ( i = 0; i < FREQ_CHANNELS; i++ ) set_output(DDRA, 1 << a); + + // init radio RX pin + set_input(DDRA, RX433); + output_low(PORTA, RX433); + + cli(); + initSerial(9600); + initFreqTimer(); + sei(); + +// set_output(DDRA, PA0); // for test of sampling frequency +// set_output(DDRA, PA2); // LED for testing RX string + + // uart2 init + + set_output(DDRA, UART2_TX); + put_str_P2( PSTR("\nhello uart2 ") ); + for ( i = 0; i < 5; i++ ) put_char2(i+48); + + // hello + + putstr_P( PSTR("\nhello ") ); + put_num ( lastReboot ); + putch('\n'); + beeper_mask = 0b10101010; + + // read previously saved parameters + + if ( eeprom_read_byte( &MEM_flag ) == true ){ + + putstr_P( PSTR("MEM ") ); + + PWM_scale = eeprom_read_byte( &MEM_PWM_scale ); + + if ( CIEL8[ PWM_scale ] ) { + TCCR0A |= (1< PWM_scale ) PWM_scale++; + if ( PWM_scale_target < PWM_scale ) PWM_scale--; + if ( PWM_scale_target == PWM_scale ) PWM_scale_flag = false; + + OCR0A = PWM_scale; // 0..255 with OCIE0A // < 0..100 with pwm_handler + } +*/ + + // ------ radio command processing ------ + + if ( rx_done == DONE ){ + +/* + // raw output + +// for ( a=0; a < RX433_BUFF; a++) putch( RXBuff[a] + 48 ); + for ( a=0; a < RX433_BUFF; a++) { put_num( RXBuff[a] ); putch(' '); } // keep_state test + putch('\n'); + rx_done = IDLE; +*/ + +/* + // manchester decde + + i = manchester_433(); + + if ( i >= 33 ){ +// putch( '\n' ); + for ( a=0; a < RX433_BUFF; a++) putch( RXBuff[a] + 48 ); + putch( ' ' ); + put_num( i ); + putch( '\n' ); + } +*/ + + // triple-bit decde + + i = triple_bit_433(); + + if ( i == 12 ){ +// if ( !beeper_mask_clock ) { beeper_mask = 1; beeper_mask_clock = 1; } // short beep + for ( a=0; a < 12; a++) putch( RXBuff[a] ); + putch( '\n' ); + } + + for ( a=0; a < RX433_BUFF; a++) RXBuff[a] = 5; + rx_done = IDLE; + + } + + if ( beeper_mask_clock % BEEP_REPEAT_PAUSE ) beeper_mask_clock++; else beeper_mask_clock = 0; + + // ------------------------------------- + + delay_ms(20); + } +} + diff --git a/FIRMWARE/rfrx.elf b/FIRMWARE/rfrx.elf new file mode 100644 index 0000000000000000000000000000000000000000..3e5f7edab47b676a55ca6f1a14b46fe9a977cc17 GIT binary patch literal 13604 zcma)D3tUvyy5Ea8q7L|eHiMA(fSCa?ANk;^QYs^&m8Z@y$|xiP0=~N4oBqo%PjEA5yLi3h!9-2b;{Hf*-t`@5_5-s}Hg-}=`2 zzV-U{9$cR~dj?~SlamiOpOaBM$hJ6+8;oZ>r{ny%QCx2>L@Iw*u7GE4U(e-_ybms_ zKf52tWpOsCED{7=0p2nyFYM288<T-^=gSB&kxYH$<8->S&w2x;AGldy~ z|6d9}P8O1cL}Al^Oc$mJQ-vwQqe5y%Mh{Mx{&){g%27r_-IzJ4b97vf9BW=)LFaRo zrKluM$Av{|Pd0sbR{W;%v&JxS&-ZVO*RJ1g@e%wTy{ccCcqH&b`v~!sYez&T46lCE z_)cI;`-kUVICZqi#=p$$VNCdQy$(5}XybY25D&2w%>pf58#FF$xu#CKvcE4BpFKZv z;Do^7wm;WW%?+{P?kcm*`7#S~g;vwu##gcO2)@xb$kOe@_X1pmToquo1A-Cg0q1|PLEBP)n@DP7j_-BU8#uL zay-a&xt6Zb>OCy9x&b|Wi*0h*oNq~%ya`<`w?nJn1pkJY33563LyQmmwaEs#1FTZC zIS-+%$@xR`-wdtITMbP-p=Rd|R&Fnk80`+<@qKdzZ%2)0UM_PucQc#wCH5yK2*ma`v#P(yQS=&!k9kbG(OcvG9E6plxlB*)mxdResS&2`n5G3{4M^$p3}%R{dh+Fjp@Xt zSD*YY;oI16EBHG8ApZexHx`LI1B=D|fk*u7+@sojcfOo(#GiK$5z36b|4Q&h;`@OX zx7}Esus7kIgu(7!LROi-kWl6;7|WPoDl?d4cSIXM_}5mfL!0QC4+;F+EY%p?mLupy zqv#NA;yf`#7;P|$_gKq<-_jH9RJu^$!>Y_4MrRKX>mwu@C$(KOz&^;B${NgxLb5T~ zog{Q|6NM4RiZ-=e4CL0`>5_U_2q&qqz|NYXr48mGLXxqiQ-5e_A0fiH_W`LuNTn&H z8qALPptikDw)jvtR;O5Nh!U@R`=~=79r42LAXmlFvR}%hZ1-vnHs@xH+$L7rH$t%S z8yW2k8?m~wg^jU6Z5D9l%nqxbMy>+$p_0AGMrXtZ>y5GgLGF3N2vO%O$0{NpJS^(U zW(oE%lcb62&k!7_&xa*pXQ{;4S75JjKz^ffP+MsA2Br~8F)KE(5Kj#wb|VS<3T4t$ zZqpXe`xmxxJ7e8Cegj&&g4T3pY=^^HiMd#T`k~dzUdXM5R&RuLu+X^)Yfb8l@nE}v zJ(sMqw|~;qef_07&CUYndTAXVb~ZXaYi7)`N4u>CTGux0LFEx=+_ZZhVim>;w~ar* zZ1?>Hto7`w6TWy>{aY2}4oLgi0T$q8e1wGNn9H8o-^d@9R=|3`fH(8$sx@q=o?e|^ zZLTh;USC~R-B5kFy0N;cy1DvRbw@R}1ShSO&))y${ZTtL@7=BWrcrb9v&J}mgg&io zQQ7jc=gYR0?Jheg-Z>ZS4r;RtDUr!F^P(-$E2HhveDt7A+S16F@i8-Eo`}hbSr=2j zvBA#76X#0xPW`OS=Cbz;`we#u*9|`6(R2IsNA;iR&*{I{x9fupgAJo%CdJI!Xtpmm zJZGpf>^2-fm!zMs&(^QfZ_@A7mv3$;Q`d-yiHk|IFS0MUKX2b=-)*0M?x1+^T$nq^ zeWK}==ws2JM*k!FTJ*i>pp9C)T6Xj~jsCyI!+Lkjk?4=3&qTLGw?=bfs5tbT?b}k# zy-R8Igv+2^P9bF!!JwnTC_zuS{N3)~J(danrXmC_H z);kIuW=FbXy2IeWdE*@y&!{YC&$E7plnB=Pv3Obx$4(M%iVgmp`RIKFI?H?1Txk#1 zb3I=VIUce#{H5@>!W+Z=g!f$gT|04-jB%Z9w>`7>M4jm8{@O)d2;ooDn$27zU;(oS+_4u;M z9F6|z2F3<{blXpmOV8lsw}^$<3mwufsr0~uZ7q%Xp!HW4YS;Y~t{G!I;0_c9^UP%X z$*!pc@)c;@RF4I{)w*T0XV<(K|O@I2= zDfTBOw=a*)y4KhoS@7I{u_S}>r#Q`IW0pI7;YjRwlYWfX1PF$IMruYH@3u|45wE$# z{tG8=o%VI@aVft0z3248kJx8y$=Gl{JnSoswMVxn!r@NS`Y(^z>mE`%xOB9AvVFv) zaS2bkDQ7TGPoG>ix=dydw%bjXc0>pc>T!^3gSh!PcG*U|Sk_q4IN+o@7NNb+6OY*V z7rimwi>er}9x>jo&KPeOV!Zm_iSc?0muq|A3a#FSGoT(jvK-@iB9{kuKAY=e?cJJs z@z(WLF?MHbJ120Qt;0vSSj&Wq^_yJ0iEm$9gB{&jhrPWPXVR}Mg-?mFV_mqxiQw)b ze*3yvoMx-gh*a{xl%lM zvGPZXX18DC#izcYlQdn}4CxaWH$lSm1;ySJ33%e|@`!ov-;1+#h{<(M2kWl?)+O7O zbr&^yw|EOz2X;uG>tUisfA@NmzEx}n{ws_6;yl~te95^DYbw$(-k|JX6Y4*8@g4D> zy<3L~1I`2_wpWVtpzl8P{VeGtU5BBo5xO+`+hT$A?6@iG*XZwv>m}}&e;Ob+9r*(; z8@~l-V{qHsA8T%giFa8uv)OHNVeU#qQNyZZcibG%5pb|Qg*^5BO0nuDFCIQyF*dlZ zqlq}HmwS~scqOEANZ|ouS8p~p)G2mz}vz=w2;=e;TA8pU&=AibK~VK%rcV6{=wr@f5?0+ z$$aOPiM%}0kcC-9F;K~JB{kF%Ubnf2LgCq%ZF|I;Q(fc?uf7 zJwHmt&INn^JlXZbdE1pQ&L40ME*(-jwAA$LOrbV3RjAX|x$V(8F?j1Xy^x*+-+a#4 zj-_Yl9&~w=;f>2>HDxsw{R(eaimzTi;HuM2YJE_Ct|afi^alHg)w4I4X9tfin_4!v z%v_eUdEMs9&AT?syM`b7wEetC@9Cd6!{+_xeT7myUp{}H4X@tDejM;iz?t^Y>Mhtw z%UP-MV4L;AR%6&5&5yL&?0EmrKd&1Q8*mEiIrsbkVP*B_1DXR`P@|mb_-(Az@T?eh zx-KHzZ7}PwGthhgHnySVt4raZ-}Mz-Y!fy*v{>&Yd^u75L?#`T_^epb=n;RgWNlYmTRALooctaf?Tf;Jw9|^ zOQ1j}+iL^g4-9p`HuU|Fa&4VG~U#9X!i{~8hADEPN2@cZ|KpGt08wnmTK2% zsf8gmx$Rk~ORZ2$;pu5k4HK@_P&`d1f&Xbb4Jn=ra+OEcMYgf4?Cq;V^A{J*It%R^2&a@{BHQ)_y63#*?&*q zk-%B*%0at=ZUo;C{yexjcu&ZYknpS_H7)?G{xdQ#L9WOTS|4Vw+C4OT;@ zA=waT7!eg@YHL!r*TeNry9Outm|l+#pFRAU;rYYY54UM~ZIFwL+<%{|88gu6pWtuu z&+;$yxA{B#gIvF`ODxf3N-(;&;p38R@ZdI1_d$F4(7KSWvRQ71FIAlGR6Bj4B5AQb z$kkH!TT{dF?Z?IXx~OeOgIot%-WF*c^c6-LsBGAWR2p-fPR=X!E%lm{SQ)O?<|u=^ ziJ}|48A2*R=s128I%0S9dZ(A9`%ln)x2B_s!-qsw^7&tqZ};S*W!0S-fH{r zjF66O5`9#qgl7;QB*R%sN^&W0I1Y2qt8@ zl9>ReXNr<}1Wd0qB@+Rrw@Jy20;5@=WWvFO{z1t^feEuHnUP@n*!3 z$s~Xoeo)E8fqCd{iSgPs4UG1fQf4X`-G@qM3YhRlC6fqd#HUK;DKHVADVZn1M1G-U zOkf_qsAT4Y8QG#_GQdRrpkx+;8TFHrc^b^<+e#)G%$R#hCK}9G&(!wLv9VyH1Ed-4 zWzxaK^inc&!RY%bnItfVp%UZu*laMya3%8?nAj*KGYd>yjFL$KGcHbIysbY0CVrBV z(SaF1Rmsc)^GJ%4nE__PV@k#hW@5U;czgH^m`NE*8Ja(npHwoLU>^OWk{J(XidD(P zgPEGAWX6HvSQvY_cPM^6@rmSodxwNf3*k7d4>{|{SXy6f58+%|Uju%_35ZA00 z()v#C>C*$hy{L&GHG$2cdzBt)B1BE}R1>|_L~k{rQ4^tRB1}#6Q4@XDL_amrUrh{9 z69d)6AT=>qO$<>JL)FAEH8EUGJftSHYC@+b!qvnGH4&jEBGtshYGS0Ch*A@y)Wm2t zF-A>{RTI%_B1TQ<)r3J!7}Z3qnut>qcfT7o&D0ghZK$hU_Y>|E{e&^UA#mWr#B+lSe2V!GSOTjJ!2n1#%#7) z3yTU?aHjN(%tS6FB_okDrOm|+IEio);Uq3GC3!ybiMVqqX(<^-Fmo0>>ERRUA&YoQ z7tBvf%HVKMk?yF4d~yaiCwT$xGZ8F3jys|wQ!=u#o`;c3O-;Uz(;%1V7r%J3;1$Qv9o+`0a1t?jn8A~-$LU%-P zxO4MObErvEMh2HYKRG#ZHkUm6aZ?62KO=P}3cUuv3<%9MrKM-Yc^t=W7c5 zCh#i?{1GsIAMLFF2{3+R?Zgy4y{N#Kf$>GOQ~%GvwF*q}PA0D2xETKPfg@%k?}_Od z7XmyJ*xy@DaZNJveqKBrn8rgc9|=5JQEmVpuPC1g9IGf#1ddjeQ&bYA!1ICWtw7fQ zG_ag#KI8&#mkIR$-+{L(utO!k8#tdPjg%Po7VuI97F6<|18-N9e*%(#QlNl})gS!#~SB-K+UQ)RO<(c04p{TVNxYnbL(*Yj>{u1@^zf}Ji@LVj@-N1cN zejNC3m@KsJ2>%6mPlrcADC{Xkwp`Jlizv@Wd(=M3-vC|<`$hp%|Ly_bfc~}K@(y6~ z@h~qAz!o$Dc}mpZA;9#vJ~9pmejQg42-0t)a!;{j&rsOUEBZ4-BSL+cA^E!kAH;2sz(TA$?4FR6Z~e_A`f2VRUaN@VZP zz}pr2egW>~WAm0{M~9-`&`13zeH!3w#NYYA)ZReg0PKPufBA6_Q^Ry2k$NkF?W2U30?YlS`M3g@J`a$8!qCw3z)Js=1G~}L z554uBz~4jpAYkf$1MpYSAMY)H9XJm2Pwy@N5co&rW&8dP+z0Y<|1JV=AX%^cb>PGB zUji_#H#cygbSjXHA9o*EPUP=Ee~z07`>8(JHwgGQD3|@A1D4O*PwOTYojMoXFps zf%l-jkszr(C$Q4ryQx0bKb?zY&&$C0JFrgu?*c35!)ai7Jjoy50GFWuI&Xb9F!`S5 z3$@n)+~p5nE(8PLqbKGFcxsPcA+1Bb%jw1i3jG+;UD zFkjPD^)m^>pHD)F+B1{9cT8!1+kkH|d=LRm<6ow#Uj>{6|H z&|ad%0kKLIQKa~C*4Vc%Hf zYrOS!koQH%M&nP3>IVUT3Y_A_{ekf}FrD`3fZxJ;q5YivH3pcIN~u4s9b**wNnbL` zmHkNvu2SgxqpJK_6A78Q8GlKc{L z;hGitI3r%ROi#=)7ca5oS|pdu47sDw!3~Y(=ROcazWQE)UpEp0G#W zqh1#8MCN?!vRLTvMvzfmgmrB$-der=EAHMNV7K-Nd)lK~k|o6@1%+n3@GdK|tl*Zc zDk`#K`e5)eoM^^UoRgQGJC5_b6Pwo*<(62@MX}`i)z&2?1x04+oh3V)ge)Zmxn|6U zqC9Ip&DfO0%tSLLYg+nT^X$~QGc#!-chj_{peP%H-p<2%(y`dg6|O3Q8kCfvSA_+6 zx%t*&@8FoNCDyeiTuD)GAtp6Vy7+N4xN>*MIg2gXX1v#1i;7kimUJ40!7Z^WCm$qf z8p9)yx8`S4v*!F&E4s8j!X>Ar&L(S>9U;->i*qCgd7B-_6&6`n%YMV^Gv`?Hv-7NE z!z#=ha*wh#&qMq^f?p^#AcRa%fM3bS+L%*7KWM`3`>Ci3=* zRe8m^?Q+=* z6cnzLW+YV69PkLQu;k`*+15PEI`fL+u3p4TgRmH7ozp}y({ikqLhl^%&QRJ~y;&Nx z1@lug{*V6VDi%R3ZL3}TpR})2*Vlpe%wKsndu;R!AvhWet8`FwH@L{Mrb{C}8FqGT zB1dy&zO^XVlE;zjyTq__am%5GoPxPbD|JbZrHD*PO*Lht&-opf%Ugo-6!b1Jxrh!5 zIZp?Rv>(Xk%z%@AM{Q>6lbH|DGz&YYmC{^ki(6sIUy@@j#*QTIR-C?g-HH;+VmwQV zJkK0CC+%)}$!mH{0#5Hy#_5+7tXP4)nbYSNlvwr4@>l8cDN~tKNxhax_=Y|kWN(*t9brbOkED)J=v_u-yz z7nG+YxAnXtPyF|gE0zltWn`P88SdFQe1D+|-XvF{r#v=P^t2W}LY&+S`DwVwBzh;r Sr;l#>wvOSrZxoJ__5BZIz0`dG literal 0 HcmV?d00001 diff --git a/FIRMWARE/rfrx.hex b/FIRMWARE/rfrx.hex new file mode 100644 index 0000000..09d2db1 --- /dev/null +++ b/FIRMWARE/rfrx.hex @@ -0,0 +1,334 @@ +:1000000030C04AC049C148C047C046C005C370C1DE +:1000100043C042C041C086C53FC03EC03DC03CC099 +:100020003BC04552520A00204F4B0A004552520A2B +:10003000004F4B0A00204F4B0A004F4B0A0045521D +:10004000520A004F4B0A004D454D20000A68656C6E +:100050006C6F20000A68656C6C6F20756172743279 +:10006000200011241FBECFE5D2E0DEBFCDBF11E0DE +:10007000A0E6B0E0E8E9F3E102C005900D92A438F3 +:10008000B107D9F722E0A4E8B1E001C01D92AD307C +:10009000B207E1F7BAD57EC9B3CF8091A301811130 +:1000A00001C0C29A2091A30130E08091910190E0BB +:1000B000AC01440F551F440F551F840F951F880F27 +:1000C000991F880F991F64E670E06AD826173707D2 +:1000D00009F4C2988091A301843121F08F5F80934D +:1000E000A30108951092A301089580918F018823A0 +:1000F00091F18091A20191E0980F9093A2018F71EC +:1001000051F59091900180919101891720F48F5FB2 +:10011000809391010AC0981720F481508093910137 +:1001200004C0981302C010928F01E0919101F0E099 +:10013000E05AFF4F8081811104C080B78F7780BF64 +:1001400003C080B7806880BFE0919101F0E0E05A81 +:10015000FF4F808186BF08958091A10191E0980FA3 +:100160009093A101837029F58091AE01882309F154 +:1001700020919F013091A001A9014F5F5F4F5093E3 +:10018000A00140939F01243F314048F480FF05C007 +:100190009BB380E289278BBB0895DD980895DD9895 +:1001A0001092A00110929F018091AE0186958093DC +:1001B000AE0108958091AD018823E1F31092AD0165 +:1001C0008091AB0108958091AD0108959091AC01AB +:1001D0009111FCCF80958093A8018AE08093AC01B7 +:1001E0000895CF93E7DFC82FF1DF8C2FCF910895CB +:1001F000CF93DF93EC018881882329F02196E6DFF5 +:1002000089918111FCCFDF91CF910895CF93DF9336 +:1002100090939E0180939D01FC012491222369F01B +:10022000EC01FE012196D0939E01C0939D01849123 +:10023000CDDFFE0184918111F4CFDF91CF9108953C +:100240009B01AC01D69ADE9ADF9A60E874E88EE1F1 +:1002500090E0B9D73093A7012093A601C9019695E4 +:100260008795280F391F3093A5012093A4018CB5E1 +:100270009DB501969BBD8ABD8EB582608EBD8FB542 +:10028000806C8FBD619A979A8BB780618BBF1092FB +:10029000AC011092AD0108951F920F920FB60F920C +:1002A00011242F933F938F939F93F894CF9917C066 +:1002B0002CB53DB58091A4019091A501820F931FAB +:1002C00099BD88BD1092A90181E08093AA015A9A34 +:1002D000CF9904C08CB186608CB9979878949F911F +:1002E0008F913F912F910F900FBE0F901F901895F7 +:1002F0001F920F920FB60F9211242F933F938F935B +:100300009F93EF93FF93F89499B38091AA01882368 +:10031000C9F099233CF49091AA018091A901892BFD +:100320008093A9018091AA01880F8093AA0128B522 +:1003300039B58091A6019091A701820F931F99BDB5 +:1003400088BD27C081E08093AD018091A901809391 +:10035000AB01E0918C01EE3150F481E08E0F80937F +:100360008C018091AB01F0E0E151FE4F80838091E0 +:10037000AB018A3059F4E0918C01F0E0E151FE4F7D +:10038000108281E080938B0110928C01619A6298B7 +:10039000979A7894FF91EF919F918F913F912F9130 +:1003A0000F900FBE0F901F901895CF93DF93CFEA59 +:1003B000D1E0FE0120E066E458E540E331E38991B5 +:1003C0009991A991B991813072E0970773E0A707DD +:1003D000B10599F028F40397A340B10591F01AC034 +:1003E0008330910571E0A70772E0B70761F08130B3 +:1003F0009240A140B24019F00DC0608305C0408317 +:1004000003C0308301C050832F5F31962C30B9F682 +:100410008CE001C080E0DF91CF9108954091B00160 +:10042000453009F468C020E030E090E080E051E021 +:100430000BC0292F30E0F901E155FE4F41814530D5 +:1004400009F456C091118F5FF901E155FE4F2081EB +:10045000211112C0413039F4E82FF0E0E155FE4F90 +:1004600050839F5F41C0433009F042C0E82FF0E065 +:10047000E155FE4F508338C0223089F4413039F4C1 +:10048000E82FF0E0E155FE4F50839F5F2DC04330D1 +:1004900079F5E82FF0E0E155FE4F508325C021307B +:1004A00089F4411107C0E82FF0E0E155FE4F1082BA +:1004B0009F5F1AC04230E1F4E82FF0E0E155FE4FB3 +:1004C000108212C02330A1F4411107C0E82FF0E0E0 +:1004D000E155FE4F10829F5F07C0423049F4E82F7C +:1004E000F0E0E155FE4F10829F5F903408F4A1CFF9 +:1004F000803410F0089580E0982F27E0E92FF0E095 +:10050000E155FE4F20839F5F9034C0F3089589B377 +:1005100083FB882780F9982F80938701809186013B +:10052000981323C0809185018F5F8093850191117D +:1005300064C0853108F461C080918801813009F080 +:100540005CC08091890190918A019C0129523109F6 +:100550002E30310508F051C022E020938801FC01C3 +:10056000E155FE4F25E0208348C0811150C08091A5 +:100570008501853108F446C090918801911142C0EF +:1005800010928A011092890191E090938801853040 +:1005900018F4109284010FC082E0809384010BC094 +:1005A00080918501853020F481E08093840103C02F +:1005B00083E0809384018091890190918A01803445 +:1005C000910570F4009731F020918401FC01E2550F +:1005D000FE4F2083019690938A01809389010BC07E +:1005E00010928801FC01E155FE4F25E02083109216 +:1005F0008A01109289011092850180918701809370 +:1006000086010895909188019130A9F7C0CF80911B +:100610008801813081F7C4CF1F920F920FB60F92DD +:1006200011242F933F934F935F936F937F938F93F7 +:100630009F93AF93BF93EF93FF93F8942AB53BB585 +:100640008091A6019091A701820F931F9BBD8ABD47 +:100650008091AC018823D1F081508093AC01893026 +:1006600089F08091A80180FD04C08FB580648FBDA2 +:1006700003C08FB58F7B8FBD8091A8018695809335 +:10068000A80106C08FB58F7B8FBD02C040DF2DDD76 +:100690007894FF91EF91BF91AF919F918F917F914E +:1006A0006F915F914F913F912F910F900FBE0F90DF +:1006B0001F9018952F923F924F925F926F927F9268 +:1006C0008F929F92AF92BF92CF92DF92EF92FF9262 +:1006D0000F931F93CF93DF93CDB7DEB728970FB655 +:1006E000F894DEBF0FBECDBF322E232E49835A832E +:1006F0006B837C838D839E83A9E0F5D509F008F494 +:1007000081C044244394512C612C712C812C912C58 +:1007100018861F82242D352D462D572D682D792DB5 +:1007200088859F8101E0BDD5822E932E48875F8307 +:10073000B62FA72FF82FE92F02E0B3D5A22EB32EA4 +:10074000C42ED52EE62EF72E082F192F282D392D41 +:1007500048855F816B2F7A2F8F2F9E2FBBD5422E1E +:10076000532E642E752E862E972E88879F83A22E59 +:10077000B32EC42ED52EE62EF72E082F192F232D9B +:10078000322D49815A816B817C818D819E813FD53B +:10079000A9E0A9D511F008F0BDCFA42CB52CC62C2A +:1007A000D72CE82CF92C08851F81232D322D498167 +:1007B0005A816B817C818D819E8129D50F2EFAE033 +:1007C000AF2EF02DB12CC12CD12CE12CF12C00E05E +:1007D00010E01BD580E3820FF9DC242D352D462D4A +:1007E000572D682D792D88859F8111D5422E532E46 +:1007F000642E752E862E972E88879F83A0E073D552 +:1008000061F615C00F2EFAE0AF2EF02DB12CC12CE1 +:10081000D12CE12CF12C00E010E049815A816B8150 +:100820007C818D819E81F1D480E3820FCFDC28967C +:100830000FB6F894DEBF0FBECDBFDF91CF911F91F1 +:100840000F91FF90EF90DF90CF90BF90AF909F906F +:100850008F907F906F905F904F903F902F90089572 +:10086000CF92DF92EF92FF921F93CF93DF936B01B2 +:100870007C01142F442301F1C1E0D0E0212F30E0AE +:1008800021503109CE01022E02C0880F991F0A940F +:10089000E2F7092E000CAA0BBB0B8C219D21AE2187 +:1008A000BF2104C0B695A795979587952A95D2F74D +:1008B000805D8CDC115011F7DF91CF911F91FF907B +:1008C000EF90DF90CF900895FC012081222339F032 +:1008D000319680E08F5F91919111FCCF089580E077 +:1008E0000895CF92DF92EF92FF920F931F93CF93D1 +:1008F000DF93D62FC82ED12CE12CF12C062F10E03F +:1009000001501109101611067CF4682F7D2D8E2DD3 +:100910009F2DC0E0A70196010AD4CF5F2C2F30E0B5 +:1009200020173107BCF304C0682F7D2D8E2D9F2D1D +:10093000D11104C061E070E080E090E0DF91CF91E0 +:100940001F910F91FF90EF90DF90CF900895CF927D +:10095000DF92EF92FF920F931F93CF93DF93662363 +:10096000B9F1FC01108120ED210F2A30A8F007C059 +:100970001991015080ED810F8A30A8F003C0C12C7D +:10098000D12C7601C701B6012AE030E040E050E00A +:100990001AD469017A011FC00FEF060FEC012196EE +:1009A000C12CD12C7601602F8AE09BDF9B01AC012A +:1009B000812F110F990BC097BC01990F880B990BD0 +:1009C000B6D3C60ED71EE81EF91E0111D1CF03C043 +:1009D000C12CD12C7601C701B601DF91CF911F91B7 +:1009E0000F91FF90EF90DF90CF9008950F931F939A +:1009F000CF93DF93FC01962F00E010E09801A1E077 +:100A0000B0E027C0EF01C90FD11D4881403391F4F8 +:100A1000AD01092E02C0440F551F0A94E2F740951C +:100A20005095052E000C660B770B04231523262307 +:100A300037230FC0AD01092E02C0440F551F0A9481 +:100A4000E2F7052E000C660B770B042B152B262BDB +:100A5000372B9150B8F6C901B801DF91CF911F91A2 +:100A60000F910895FC012081222379F1319660E0F5 +:100A700070E0CB01422F30ED320F3A3060F021565A +:100A8000263018F439EA340F06C02FEB240F263035 +:100A9000F8F439EC340FDC01CB01880F991FAA1F41 +:100AA000BB1F880F991FAA1FBB1F880F991FAA1F62 +:100AB000BB1F880F991FAA1FBB1F3F70BC01CD0130 +:100AC000632B21912111D6CF089560E070E0CB0116 +:100AD0000895CF93DF9300D0CDB7DEB78823A1F080 +:100AE0001A82198229813A812239334059F02981A9 +:100AF0003A812F5F3F4F3A83298329813A812239F6 +:100B00003340A9F7815061F70F900F90DF91CF919B +:100B1000089584E087BB83E080BF81E083BF89BF05 +:100B200016BE08951F920F920FB60F9211242F93A5 +:100B30003F934F935F938F939F93F89480919C0181 +:100B400091E0980F90939C01837029F58091AE01FC +:100B5000882309F120919A0130919B01A9014F5FEF +:100B60005F4F50939B0140939A01243F314048F4DA +:100B700080FF05C09BB380E289278BBB0CC0DD984A +:100B80000AC0DD9810929B0110929A018091AE01EB +:100B900086958093AE0178949F918F915F914F914C +:100BA0003F912F910F900FBE0F901F901895809539 +:100BB000DA98F8949AE0EFE9F1E03197F1F700C0A4 +:100BC000000080FF02C0DA9801C0DA9A8695915041 +:100BD00091F77894089590939901809398019C01DE +:100BE000FC014491442381F03196F0939901E09304 +:100BF0009801F9018491DBDFE0919801F09199016E +:100C00009F0184918111F0CF0895CF93DF93CDB7E9 +:100C1000DEB72B970FB6F894DEBF0FBECDBF04B77B +:100C200014BE9FE088E10FB6F894A89581BD0FBE71 +:100C300091BDD59ABA9AD398DB98F89460E875E29A +:100C400080E090E0FDDA65DF7894D29A84E590E068 +:100C5000C2DF10E3812FABDF1F5F1533D9F78CE4C0 +:100C600090E0D4DA202F30E040E050E060E070E027 +:100C700080E090E01FDD8AE0A9DA8AEA8093AE0185 +:100C80008EE891E059D3813009F04FC087E490E0BD +:100C9000BDDA86E090E050D380939101E82FF0E038 +:100CA000E05AFF4F8081882351F080B7806880BF71 +:100CB000E0919101F0E0E05AFF4F808186BF2091E2 +:100CC00091012093900130E040E050E060E070E05E +:100CD00080E090E0EFDC80E279DA0F2EF0E0EF2E9A +:100CE000F0E0FF2EF02D02E911E00F2EF8E9CF2EF3 +:100CF000F1E0DF2EF02DC70127D3D8018D939D930E +:100D00008D01AC01242F352F40E050E060E070E011 +:100D100080E090E0CFDC80E259DAB2E0EB0EF11C2B +:100D2000C016D10641F78AE051DA0F2EFDE0EF2E12 +:100D3000F2E0FF2EF02D0F2EF8E9AF2EF1E0BF2EDE +:100D4000F02D0F2EF3E06F2EF02D0F2EFFEECF2E95 +:100D5000F1E0DF2EF02D0F2EF5E07F2EF02D0F2E7F +:100D6000FBEB2F2EF1E03F2EF02DA89580918B010B +:100D7000882309F4B0C10FEE11E0F801DF01808192 +:100D8000803211F08A3009F41C923196EE16FF067B +:100D9000A9F744E050E060E671E08FEE91E0AFD259 +:100DA000892B09F4FFCF44E050E065E671E08FEE57 +:100DB00091E0A5D2892B09F04FC06091910186E0A6 +:100DC00090E0C7D22091910130E040E050E060E037 +:100DD00070E080E090E06EDC80E2F8D90F2EF0E069 +:100DE0008F2EF0E09F2EF02D0F2EF2E94F2EF1E026 +:100DF0005F2EF02D5D824C82F201619171912F0185 +:100E0000C401B5D2AC81BD814D915C91242F352FA9 +:100E100040E050E060E070E080E090E04BDC80E299 +:100E2000D5D9B2E08B0E911C4A145B0419F761E02E +:100E30008EE891E08ED286E090E07ED29091910192 +:100E4000891305C083E490E0E1D9562C09C08EE3F4 +:100E500090E0DCD9562C04C00F2EFEE15F2EF02D61 +:100E600044E050E06AE671E08FEE91E048D2892BD1 +:100E700041F52091910130E040E050E060E070E009 +:100E800080E090E017DC80E2A1D90F2EF2E98F2EEE +:100E9000F1E09F2EF02DF401419151914F01242F4B +:100EA000352F40E050E060E070E080E090E002DC50 +:100EB00080E28CD9A814B90471F78AE390E0A6D92E +:100EC000562C44E050E06FE671E08FEE91E017D2CF +:100ED000892B49F484EF91E0F7DC682F84EF91E0EF +:100EE00085DD6093AE0144E050E064E771E08FEE91 +:100EF00091E005D2892BC1F484EF91E0E5DC682F05 +:100F000084EF91E024DD262F6093900181E08093AF +:100F10008F0130E040E050E060E070E080E090E081 +:100F2000C9DB85E390E072D944E050E069E771E005 +:100F30008FEE91E0E4D1892B09F047C086EF91E074 +:100F4000C3DC682F86EF91E002DD4B01683EF3E0E1 +:100F50007F0760F561E084EF91E0F9DC660F771FB1 +:100F6000FB01EE56FE4F80EE99E7B40105D1718387 +:100F700060830F2EF2E98F2EF1E09F2EF02DD40129 +:100F80004D915D914D01242F352F40E050E060E000 +:100F900070E080E090E08EDB80E218D9A814B904FC +:100FA00071F781E390E032D9562C0FC0AB01282DA8 +:100FB000352F40E050E060E070E080E090E07ADBC8 +:100FC00080E204D98CE290E021D944E050E06EE761 +:100FD00071E08FEE91E093D1892B09F074C086EF18 +:100FE00091E072DC982E84EF91E03CDD862E880C37 +:100FF000292D30E040E050E060E070E080E090E0DB +:1010000059DB80E2E3D8282D30E040E050E060E09A +:1010100070E080E090E04EDB80E2D8D886EF91E08F +:10102000E7D880E2D3D8A89519821A821B8250FC97 +:1010300047C0981045C0992099F0812C682D70E028 +:101040006A507E4F42E050E0CE01019666D1CE015B +:10105000019608DD862FABDD83948394891470F3A9 +:101060008AE0A5DDA895992039F1812C682D70E0E2 +:101070006A507E4F42E050E0CE0101964ED1CE0143 +:101080000196F0DCAB01BC019A01AB0160E070E0BD +:10109000CB012C833D834E835F83688779878A8762 +:1010A0009B8760E070E080E090E004DB80E28ED817 +:1010B000839483948914D0F287E290E0A7D803C088 +:1010C00082E290E0A3D8D8011D928D01EA16FB06BA +:1010D000D1F710928B01809188018230A9F465D9F3 +:1010E0008C3011F50FEA11E0F80181918F016ED873 +:1010F00020163106C9F78AE069D816C07192CE165B +:10110000DF06E1F71092880120918D01822F6AE0BD +:1011100027D0992321F02F5F20938D0102C01092D8 +:101120008D0184E1D6DC21CEEFEAF1E0E7CFEE27B6 +:10113000FF27AA27BB2708C0A20FB31FE41FF51F74 +:10114000220F331F441F551F9695879577956795F6 +:1011500098F37040A9F7009799F7BD01CF01089562 +:10116000991B79E004C0991F961708F0961B881FF9 +:101170007A95C9F780950895AA1BBB1B51E107C05A +:10118000AA1FBB1FA617B70710F0A61BB70B881F17 +:10119000991F5A95A9F780959095BC01CD010895A6 +:1011A00097FB072E16F4009406D077FD08D0E4DFF5 +:1011B00007FC05D03EF4909581959F4F089570955A +:1011C00061957F4F0895A1E21A2EAA1BBB1BFD015A +:1011D0000DC0AA1FBB1FEE1FFF1FA217B307E40716 +:1011E000F50720F0A21BB30BE40BF50B661F771F6E +:1011F000881F991F1A9469F760957095809590954E +:101200009B01AC01BD01CF010895689401C0E89431 +:101210008F929F92CF93DF9305D0DF91CF919F90D4 +:101220008F90089588249924F401E401B0E41B2EE2 +:10123000D4019D158E049F04E007F10738F4FC01EA +:101240004B01CA01B901AD019E011694220F331F53 +:10125000441F551F661F771F881F991F881C991CE4 +:10126000EE1FFF1FCC1FDD1FAA1FBB1F8A149B048C +:10127000EC05FD05CE05DF05A007B10748F08A188B +:101280009B08EC09FD09CE09DF09A00BB10B216019 +:101290001A94E1F62EF49401AF01BE01CD01000CC9 +:1012A00008950F93083090F0982F872F762F652F91 +:1012B000542F432F322F22270850F4CF220F331FF1 +:1012C000441F551F661F771F881F991F0A95B2F785 +:1012D0000F9108952A0D3B1D4C1D5D1D6E1D7F1D38 +:1012E000801F911F08950024A7FD00942A17300540 +:1012F0004005500560057005800590050895FB01C7 +:10130000DC014150504030F08D910190801919F46A +:101310000020B9F7881B990B0895FB01DC014150AF +:10132000504048F001900D920020C9F701C01D9275 +:1013300041505040E0F70895E199FECF9FBB8EBB2E +:10134000E09A99278DB30895A8E1B0E042E050E01B +:1013500013C0262FE199FECF1CBA9FBB8EBB2DBBBD +:101360000FB6F894E29AE19A0FBE01960895F1DF64 +:10137000272FF0CFDC01CB01FC01E199FECF06C0A5 +:10138000FFBBEEBBE09A31960DB20D92415050403A +:08139000B8F70895F894FFCFAF +:101398000001010101010101010101010101010136 +:1013A8000101010202020202020202020202020218 +:1013B8000202020202020202020202030303030300 +:1013C80003030303030303030303040404040404DF +:1013D80004040404040405050505050505050506BA +:1013E8000606060606060607070707070708080889 +:1013F80008080809090909090A0A0A0A0A0B0B0B4D +:101408000B0C0C0C0C0D0D0D0E0E0E0E0F0F0F10FD +:101418001010111112121213131414151515161693 +:101428001717181819191A1B1B1C1C1D1E1E1F2004 +:101438002021222323242526272728292A2B2C2D3F +:101448002E2F3031323334353738393A3B3D3E3F31 +:101458004142444547484A4C4D4F51525456585AB8 +:101468005C5E60626466696B6D707275777A7C7FAA +:101478008285888B8E9194979B9EA2A5A9ACB0B4C7 +:10148800B8BCC0C4C9CDD2D6DBE0E5EAEFF4FAFFB8 +:10149800494D524200494D535600494D454D00496A +:1014A8004D425000494D505700494D465200494D54 +:0414B800504A000096 +:00000001FF diff --git a/FIRMWARE/rfrx.map b/FIRMWARE/rfrx.map new file mode 100644 index 0000000..6441bd8 --- /dev/null +++ b/FIRMWARE/rfrx.map @@ -0,0 +1,739 @@ +Archive member included to satisfy reference by file (symbol) + +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + rfrx.o (__mulsi3) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + rfrx.o (__udivmodqi4) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + rfrx.o (__udivmodhi4) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + rfrx.o (__divmodhi4) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + rfrx.o (__udivmodsi4) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o (exit) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + rfrx.o (__do_copy_data) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + rfrx.o (__do_clear_bss) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + rfrx.o (__umoddi3) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) (__udivmod64) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + rfrx.o (__ashldi3) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + rfrx.o (__adddi3) +/usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + rfrx.o (__cmpdi2_s8) +/usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a(strncmp.o) + rfrx.o (strncmp) +/usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a(strncpy.o) + rfrx.o (strncpy) +/usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_byte.o) + rfrx.o (eeprom_read_byte) +/usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_word.o) + rfrx.o (eeprom_read_word) +/usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eewr_byte.o) + rfrx.o (eeprom_write_byte) +/usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eewr_word.o) + rfrx.o (eeprom_write_word) +/usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_block.o) + /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_word.o) (eeprom_read_blraw) + +Allocating common symbols +Common symbol size file + +beeper_mask 0x1 rfrx.o +RXBuff 0x40 rfrx.o +im 0x1e rfrx.o + +Memory Configuration + +Name Origin Length Attributes +text 0x0000000000000000 0x0000000000002000 xr +data 0x0000000000800060 0x000000000000ffa0 rw !x +eeprom 0x0000000000810000 0x0000000000010000 rw !x +fuse 0x0000000000820000 0x0000000000000003 rw !x +lock 0x0000000000830000 0x0000000000000400 rw !x +signature 0x0000000000840000 0x0000000000000400 rw !x +user_signatures 0x0000000000850000 0x0000000000000400 rw !x +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + +LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o +LOAD rfrx.o +START GROUP +LOAD /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a +LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libm.a +LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a +LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a +END GROUP + 0x0000000000002000 __TEXT_REGION_LENGTH__ = DEFINED (__TEXT_REGION_LENGTH__)?__TEXT_REGION_LENGTH__:0x2000 + 0x000000000000ffa0 __DATA_REGION_LENGTH__ = DEFINED (__DATA_REGION_LENGTH__)?__DATA_REGION_LENGTH__:0xffa0 + 0x0000000000010000 __EEPROM_REGION_LENGTH__ = DEFINED (__EEPROM_REGION_LENGTH__)?__EEPROM_REGION_LENGTH__:0x10000 + [0x0000000000000003] __FUSE_REGION_LENGTH__ = DEFINED (__FUSE_REGION_LENGTH__)?__FUSE_REGION_LENGTH__:0x400 + 0x0000000000000400 __LOCK_REGION_LENGTH__ = DEFINED (__LOCK_REGION_LENGTH__)?__LOCK_REGION_LENGTH__:0x400 + 0x0000000000000400 __SIGNATURE_REGION_LENGTH__ = DEFINED (__SIGNATURE_REGION_LENGTH__)?__SIGNATURE_REGION_LENGTH__:0x400 + 0x0000000000000400 __USER_SIGNATURE_REGION_LENGTH__ = DEFINED (__USER_SIGNATURE_REGION_LENGTH__)?__USER_SIGNATURE_REGION_LENGTH__:0x400 + +.hash + *(.hash) + +.dynsym + *(.dynsym) + +.dynstr + *(.dynstr) + +.gnu.version + *(.gnu.version) + +.gnu.version_d + *(.gnu.version_d) + +.gnu.version_r + *(.gnu.version_r) + +.rel.init + *(.rel.init) + +.rela.init + *(.rela.init) + +.rel.text + *(.rel.text) + *(.rel.text.*) + *(.rel.gnu.linkonce.t*) + +.rela.text + *(.rela.text) + *(.rela.text.*) + *(.rela.gnu.linkonce.t*) + +.rel.fini + *(.rel.fini) + +.rela.fini + *(.rela.fini) + +.rel.rodata + *(.rel.rodata) + *(.rel.rodata.*) + *(.rel.gnu.linkonce.r*) + +.rela.rodata + *(.rela.rodata) + *(.rela.rodata.*) + *(.rela.gnu.linkonce.r*) + +.rel.data + *(.rel.data) + *(.rel.data.*) + *(.rel.gnu.linkonce.d*) + +.rela.data + *(.rela.data) + *(.rela.data.*) + *(.rela.gnu.linkonce.d*) + +.rel.ctors + *(.rel.ctors) + +.rela.ctors + *(.rela.ctors) + +.rel.dtors + *(.rel.dtors) + +.rela.dtors + *(.rela.dtors) + +.rel.got + *(.rel.got) + +.rela.got + *(.rela.got) + +.rel.bss + *(.rel.bss) + +.rela.bss + *(.rela.bss) + +.rel.plt + *(.rel.plt) + +.rela.plt + *(.rela.plt) + +.text 0x0000000000000000 0x1398 + *(.vectors) + .vectors 0x0000000000000000 0x22 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + 0x0000000000000000 __vectors + 0x0000000000000000 __vector_default + *(.vectors) + *(.progmem.gcc*) + 0x0000000000000022 . = ALIGN (0x2) + 0x0000000000000022 __trampolines_start = . + *(.trampolines) + .trampolines 0x0000000000000022 0x0 linker stubs + *(.trampolines*) + 0x0000000000000022 __trampolines_end = . + *libprintf_flt.a:*(.progmem.data) + *libc.a:*(.progmem.data) + *(.progmem*) + .progmem.data 0x0000000000000022 0x40 rfrx.o + 0x0000000000000062 . = ALIGN (0x2) + *(.jumptables) + *(.jumptables*) + *(.lowtext) + *(.lowtext*) + 0x0000000000000062 __ctors_start = . + *(.ctors) + 0x0000000000000062 __ctors_end = . + 0x0000000000000062 __dtors_start = . + *(.dtors) + 0x0000000000000062 __dtors_end = . + SORT(*)(.ctors) + SORT(*)(.dtors) + *(.init0) + .init0 0x0000000000000062 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + 0x0000000000000062 __init + *(.init0) + *(.init1) + *(.init1) + *(.init2) + .init2 0x0000000000000062 0xc /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + *(.init2) + *(.init3) + *(.init3) + *(.init4) + .init4 0x000000000000006e 0x16 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + 0x000000000000006e __do_copy_data + .init4 0x0000000000000084 0x10 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + 0x0000000000000084 __do_clear_bss + *(.init4) + *(.init5) + *(.init5) + *(.init6) + *(.init6) + *(.init7) + *(.init7) + *(.init8) + *(.init8) + *(.init9) + .init9 0x0000000000000094 0x4 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + *(.init9) + *(.text) + .text 0x0000000000000098 0x2 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + 0x0000000000000098 __vector_1 + 0x0000000000000098 __vector_12 + 0x0000000000000098 __bad_interrupt + 0x0000000000000098 __vector_3 + 0x0000000000000098 __vector_13 + 0x0000000000000098 __vector_5 + 0x0000000000000098 __vector_4 + 0x0000000000000098 __vector_9 + 0x0000000000000098 __vector_15 + 0x0000000000000098 __vector_8 + 0x0000000000000098 __vector_14 + 0x0000000000000098 __vector_10 + 0x0000000000000098 __vector_16 + .text 0x000000000000009a 0x1094 rfrx.o + 0x000000000000009a pwm_handler + 0x00000000000000ea pwm_scale_handler + 0x0000000000000158 beep_handler + 0x00000000000001b4 getch + 0x00000000000001c6 kbhit + 0x00000000000001cc putch + 0x00000000000001e2 getche + 0x00000000000001f0 putstr + 0x000000000000020c putstr_P + 0x0000000000000240 initSerial + 0x0000000000000298 __vector_2 + 0x00000000000002f0 __vector_7 + 0x00000000000003aa triple_bit_433 + 0x000000000000041c manchester_433 + 0x000000000000050e read433_handler + 0x0000000000000618 __vector_6 + 0x00000000000006b4 put_num + 0x0000000000000860 put_bin + 0x00000000000008c8 strlen_ + 0x00000000000008e2 pow_ + 0x000000000000094e atoi_ + 0x00000000000009ec atob_ + 0x0000000000000a64 hex2int + 0x0000000000000ad2 delay_ms + 0x0000000000000b12 initFreqTimer + 0x0000000000000b24 __vector_11 + 0x0000000000000bae put_char2 + 0x0000000000000bd6 put_str_P2 + 0x0000000000000c0a main + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a(strncmp.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a(strncpy.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_byte.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_word.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eewr_byte.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eewr_word.o) + .text 0x000000000000112e 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_block.o) + 0x000000000000112e . = ALIGN (0x2) + *(.text.*) + .text.libgcc.mul + 0x000000000000112e 0x32 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + 0x000000000000112e __mulsi3 + 0x0000000000001132 __mulsi3_helper + .text.libgcc.div + 0x0000000000001160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + .text.libgcc 0x0000000000001160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + .text.libgcc.prologue + 0x0000000000001160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + .text.libgcc.builtins + 0x0000000000001160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + .text.libgcc.fmul + 0x0000000000001160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + .text.libgcc.fixed + 0x0000000000001160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + .text.libgcc.mul + 0x0000000000001160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + .text.libgcc.div + 0x0000000000001160 0x18 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + 0x0000000000001160 __udivmodqi4 + .text.libgcc 0x0000000000001178 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + .text.libgcc.prologue + 0x0000000000001178 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + .text.libgcc.builtins + 0x0000000000001178 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + .text.libgcc.fmul + 0x0000000000001178 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + .text.libgcc.fixed + 0x0000000000001178 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + .text.libgcc.mul + 0x0000000000001178 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + .text.libgcc.div + 0x0000000000001178 0x28 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + 0x0000000000001178 __udivmodhi4 + .text.libgcc 0x00000000000011a0 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + .text.libgcc.prologue + 0x00000000000011a0 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + .text.libgcc.builtins + 0x00000000000011a0 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + .text.libgcc.fmul + 0x00000000000011a0 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + .text.libgcc.fixed + 0x00000000000011a0 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + .text.libgcc.mul + 0x00000000000011a0 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + .text.libgcc.div + 0x00000000000011a0 0x26 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + 0x00000000000011a0 __divmodhi4 + 0x00000000000011a0 _div + .text.libgcc 0x00000000000011c6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + .text.libgcc.prologue + 0x00000000000011c6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + .text.libgcc.builtins + 0x00000000000011c6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + .text.libgcc.fmul + 0x00000000000011c6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + .text.libgcc.fixed + 0x00000000000011c6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + .text.libgcc.mul + 0x00000000000011c6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + .text.libgcc.div + 0x00000000000011c6 0x44 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + 0x00000000000011c6 __udivmodsi4 + .text.libgcc 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + .text.libgcc.prologue + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + .text.libgcc.builtins + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + .text.libgcc.fmul + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + .text.libgcc.fixed + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + .text.libgcc.mul + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + .text.libgcc.div + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + .text.libgcc 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + .text.libgcc.prologue + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + .text.libgcc.builtins + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + .text.libgcc.fmul + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + .text.libgcc.fixed + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + .text.libgcc.mul + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + .text.libgcc.div + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + .text.libgcc 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + .text.libgcc.prologue + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + .text.libgcc.builtins + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + .text.libgcc.fmul + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + .text.libgcc.fixed + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + .text.libgcc.mul + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + .text.libgcc.div + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + .text.libgcc 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + .text.libgcc.prologue + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + .text.libgcc.builtins + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + .text.libgcc.fmul + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + .text.libgcc.fixed + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + .text.libgcc.mul + 0x000000000000120a 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + .text.libgcc.div + 0x000000000000120a 0x1a /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + 0x000000000000120a __umoddi3 + 0x000000000000120e __udivdi3 + 0x0000000000001210 __udivdi3_umoddi3 + .text.libgcc 0x0000000000001224 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + .text.libgcc.prologue + 0x0000000000001224 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + .text.libgcc.builtins + 0x0000000000001224 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + .text.libgcc.fmul + 0x0000000000001224 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + .text.libgcc.fixed + 0x0000000000001224 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + .text.libgcc.mul + 0x0000000000001224 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + .text.libgcc.div + 0x0000000000001224 0x7e /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + 0x0000000000001224 __udivmod64 + .text.libgcc 0x00000000000012a2 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + .text.libgcc.prologue + 0x00000000000012a2 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + .text.libgcc.builtins + 0x00000000000012a2 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + .text.libgcc.fmul + 0x00000000000012a2 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + .text.libgcc.fixed + 0x00000000000012a2 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + .text.libgcc.mul + 0x00000000000012a2 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + .text.libgcc.div + 0x00000000000012a2 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + .text.libgcc 0x00000000000012a2 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + .text.libgcc.prologue + 0x00000000000012a2 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + .text.libgcc.builtins + 0x00000000000012a2 0x32 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + 0x00000000000012a2 __ashldi3 + .text.libgcc.fmul + 0x00000000000012d4 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + .text.libgcc.fixed + 0x00000000000012d4 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + .text.libgcc.mul + 0x00000000000012d4 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + .text.libgcc.div + 0x00000000000012d4 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + .text.libgcc 0x00000000000012d4 0x12 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + 0x00000000000012d4 __adddi3 + .text.libgcc.prologue + 0x00000000000012e6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + .text.libgcc.builtins + 0x00000000000012e6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + .text.libgcc.fmul + 0x00000000000012e6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + .text.libgcc.fixed + 0x00000000000012e6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + .text.libgcc.mul + 0x00000000000012e6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + .text.libgcc.div + 0x00000000000012e6 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + .text.libgcc 0x00000000000012e6 0x18 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + 0x00000000000012e6 __cmpdi2_s8 + .text.libgcc.prologue + 0x00000000000012fe 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + .text.libgcc.builtins + 0x00000000000012fe 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + .text.libgcc.fmul + 0x00000000000012fe 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + .text.libgcc.fixed + 0x00000000000012fe 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + .text.avr-libc + 0x00000000000012fe 0x1c /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a(strncmp.o) + 0x00000000000012fe strncmp + .text.avr-libc + 0x000000000000131a 0x1e /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a(strncpy.o) + 0x000000000000131a strncpy + .text.avr-libc + 0x0000000000001338 0x10 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_byte.o) + 0x0000000000001338 eeprom_read_byte + .text.avr-libc + 0x0000000000001348 0xa /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_word.o) + 0x0000000000001348 eeprom_read_word + .text.avr-libc + 0x0000000000001352 0x1c /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eewr_byte.o) + 0x0000000000001352 eeprom_write_byte + 0x0000000000001354 eeprom_write_r18 + .text.avr-libc + 0x000000000000136e 0x6 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eewr_word.o) + 0x000000000000136e eeprom_write_word + .text.avr-libc + 0x0000000000001374 0x20 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_block.o) + 0x0000000000001374 eeprom_read_block + 0x0000000000001378 eeprom_read_blraw + 0x0000000000001394 . = ALIGN (0x2) + *(.fini9) + .fini9 0x0000000000001394 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + 0x0000000000001394 exit + 0x0000000000001394 _exit + *(.fini9) + *(.fini8) + *(.fini8) + *(.fini7) + *(.fini7) + *(.fini6) + *(.fini6) + *(.fini5) + *(.fini5) + *(.fini4) + *(.fini4) + *(.fini3) + *(.fini3) + *(.fini2) + *(.fini2) + *(.fini1) + *(.fini1) + *(.fini0) + .fini0 0x0000000000001394 0x4 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + *(.fini0) + 0x0000000000001398 _etext = . + +.data 0x0000000000800060 0x124 load address 0x0000000000001398 + 0x0000000000800060 PROVIDE (__data_start, .) + *(.data) + .data 0x0000000000800060 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + .data 0x0000000000800060 0x100 rfrx.o + 0x0000000000800060 CIEL8 + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a(strncmp.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a(strncpy.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_byte.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_word.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eewr_byte.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eewr_word.o) + .data 0x0000000000800160 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_block.o) + *(.data*) + *(.rodata) + *(.rodata*) + .rodata.str1.1 + 0x0000000000800160 0x23 rfrx.o + *(.gnu.linkonce.d*) + 0x0000000000800184 . = ALIGN (0x2) + *fill* 0x0000000000800183 0x1 + 0x0000000000800184 _edata = . + 0x0000000000800184 PROVIDE (__data_end, .) + +.bss 0x0000000000800184 0x89 + 0x0000000000800184 PROVIDE (__bss_start, .) + *(.bss) + .bss 0x0000000000800184 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + .bss 0x0000000000800184 0x2a rfrx.o + 0x0000000000800184 current_state + 0x0000000000800185 keep_state + 0x0000000000800186 prev_rx_bit + 0x0000000000800187 current_rx_bit + 0x0000000000800188 rx_done + 0x0000000000800189 cnt + 0x000000000080018b srx_ready + 0x000000000080018c srx_cnt + 0x000000000080018d beeper_mask_clock + 0x000000000080018e MEM_flag + 0x000000000080018f PWM_scale_flag + 0x0000000000800190 PWM_scale_target + 0x0000000000800191 PWM_scale + 0x0000000000800192 freq_scale + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_mulsi3.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodqi4.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodhi4.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_divmodhi4.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmodsi4.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_exit.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_copy_data.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_clear_bss.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivdi3.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_udivmod64.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_ashldi3.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_adddi3.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/avr25/libgcc.a(_cmpdi2_s8.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a(strncmp.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libc.a(strncpy.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_byte.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_word.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eewr_byte.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eewr_word.o) + .bss 0x00000000008001ae 0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/libattiny84.a(eerd_block.o) + *(.bss*) + *(COMMON) + COMMON 0x00000000008001ae 0x5f rfrx.o + 0x00000000008001ae beeper_mask + 0x00000000008001af RXBuff + 0x00000000008001ef im + 0x000000000080020d PROVIDE (__bss_end, .) + 0x0000000000001398 __data_load_start = LOADADDR (.data) + 0x00000000000014bc __data_load_end = (__data_load_start + SIZEOF (.data)) + +.noinit 0x000000000080020d 0x0 + [!provide] PROVIDE (__noinit_start, .) + *(.noinit*) + [!provide] PROVIDE (__noinit_end, .) + 0x000000000080020d _end = . + [!provide] PROVIDE (__heap_start, .) + +.eeprom 0x0000000000810000 0x7 + *(.eeprom*) + .eeprom 0x0000000000810000 0x7 rfrx.o + 0x0000000000810000 MEM_freq_scale + 0x0000000000810006 MEM_PWM_scale + 0x0000000000810007 __eeprom_end = . + +.fuse + *(.fuse) + *(.lfuse) + *(.hfuse) + *(.efuse) + +.lock + *(.lock*) + +.signature + *(.signature*) + +.user_signatures + *(.user_signatures*) + +.stab + *(.stab) + +.stabstr + *(.stabstr) + +.stab.excl + *(.stab.excl) + +.stab.exclstr + *(.stab.exclstr) + +.stab.index + *(.stab.index) + +.stab.indexstr + *(.stab.indexstr) + +.comment 0x0000000000000000 0x11 + *(.comment) + .comment 0x0000000000000000 0x11 rfrx.o + 0x12 (size before relaxing) + +.note.gnu.avr.deviceinfo + 0x0000000000000000 0x3c + .note.gnu.avr.deviceinfo + 0x0000000000000000 0x3c /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + +.note.gnu.build-id + *(.note.gnu.build-id) + +.debug + *(.debug) + +.line + *(.line) + +.debug_srcinfo + *(.debug_srcinfo) + +.debug_sfnames + *(.debug_sfnames) + +.debug_aranges + *(.debug_aranges) + +.debug_pubnames + *(.debug_pubnames) + +.debug_info 0x0000000000000000 0x420 + *(.debug_info .gnu.linkonce.wi.*) + .debug_info 0x0000000000000000 0x420 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + +.debug_abbrev 0x0000000000000000 0x3e8 + *(.debug_abbrev) + .debug_abbrev 0x0000000000000000 0x3e8 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + +.debug_line 0x0000000000000000 0x1a + *(.debug_line .debug_line.* .debug_line_end) + .debug_line 0x0000000000000000 0x1a /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + +.debug_frame + *(.debug_frame) + +.debug_str 0x0000000000000000 0x173 + *(.debug_str) + .debug_str 0x0000000000000000 0x173 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/crtattiny84.o + +.debug_loc + *(.debug_loc) + +.debug_macinfo + *(.debug_macinfo) + +.debug_weaknames + *(.debug_weaknames) + +.debug_funcnames + *(.debug_funcnames) + +.debug_typenames + *(.debug_typenames) + +.debug_varnames + *(.debug_varnames) + +.debug_pubtypes + *(.debug_pubtypes) + +.debug_ranges + *(.debug_ranges) + +.debug_macro + *(.debug_macro) +OUTPUT(rfrx.elf elf32-avr) +LOAD linker stubs diff --git a/FIRMWARE/rfrx.o b/FIRMWARE/rfrx.o new file mode 100644 index 0000000000000000000000000000000000000000..0b52c2b07f965ea8cb0d37ada319c78ac0ffd7f5 GIT binary patch literal 15320 zcmbuF3wTx4mB;sikc5ZcfB_LB+(3i?$-PMk&mzPa5h;&|mO2dOCLxIlBqUtIa~R1@ z5JE(fn~)Hq0(C4Rr9My)mB+2)P^1+iW08+qxT19^r4VU`g3ZAE|L3e74ne2=zBwQJ zuHRaF?X}l_oPAF2W#z+@Cm4pI^kt~W)lE&QtD}|Lgvw;oAy#!$omHt{DPMOL_@L1V zN(fS~4(>G496##EvdU4{ufnm(EZJWd2UXL+yGMo@Egv+{b5)|zT;(aPRVutLqK2Qe zRtzwjDgD6)M>XoI78otn&}mzHw`#Fks6YeQm(JGUyHtP?g79e$2Gg5UN`1_$^qs0D zr3WcX^GXleYgZq%degm>7aJ|?fxSB+6Hs0?rg=Qm($PZ-O3e7g6xC9CLj|6HtMu&J zLC?M)UibS37WT}-_N(ix@#t9EZuJ&k$C3D%ndw&lRgI4f+|YQ*^a!{>r=-H5Jlf+c{m%CDNP8>?(>o;P+HCmK&T zo@vZDS8{Is7u8sY1b8}8J~Ha-*3`v1M)%W}b-Q2OZPY)%zjFWj-DMf;_gC#MEvVX` z*|@Rs*>_4apFOBY8(!D1#!=(g4qtZ?jC(x?_%Hcy&zvh42sQ<;8_r86q5qw3I0wCVD|>!2{W2~2{kD{P1%(KpFl>r3Z$SUprn_(J&E;k$ZTB@ z`zL7ahZJP_Fl;K|3?>AtgQda8P&?S25WHsaK6ub))%v?vc`S?57meNYAljUBTjNVF z-{Mh$hZ5N1O`8hzhtGHV*;=YVG`$c}w~Q!bv{YOCh%yxz@DF%x@l+=(jHEPKHRFB> zHn;}`|0p>+kt1qhU;9@1-zo-`UTbjcb?4pBRkKb8-d)dNZ7rM692IN18(%O6PfzUZ zN=WRaFxLJ-C-y?CIZyWootR_u%z&TOUf-*F$NPi4^PWjiEwrdWnYo{>erWZHUT#X= zXKAv(6SCQ8ohw#v&T^xku{Z+jYHo@t8;s3z59?f!%Q z*UdX%rN7AU@lR`a54&r|*G#MN)D+dMtf{KmQuBJv!J1<=XKF6h+^E5kP|G{z<9ANK z6T8u|=jw*j2OS4KKA7Yh;Ci%tX8FAG73I&BZ!Uio=M?W06-bMDXv1T1nQ;r^d~yD` z-mCkS#l#PfpAi4!_`LXK@fFW(@fq+fbJe;guJM%balhie>i(m<18gt3-g15D`mO70 z*I!-X?t9#^@uTA>KI8Gtb1!#Sxi{m?O?5r)%62Vst#)m6Rjk=k-oC|v_@wwpeKURY zd@Fp<`8NAhljMaR^m5$pxI=ND#hr`078m|ZKi}=X4%fHA*Imu=Z^r#H?vuDL;=YMf z!3gA4`em6zHMJkb?b&SQ9AE~%JI<|nSutblZ_X&sh<<*D|3>wt>NC~Hst;DbUcIHd zs(NL0QMIRfTJ`v9cQu|jvM$!D%rjOPk?u6?k6+>>i^fS3ou1hFsL{ct0(_Qt+0db- zvrBc`(e?eV>!M$bel7Z7vHE2t%lRb=T%~T zX|T%U_w!EWeSR|oy)#a@54)_{3Ux;Wjr8uFBYJfY4Qa`9|7-mE_$~2);44PGp_-0) z;*g*7?!>SVtcI@r1aUKi#W)MA%~R4o1Go2;i;P;02%q!M(T*VrJQwcq8|kHg_Bkp| zjqA49_?5B87=jZvC76yC$v2i8Sd&YkjthA5S{@nhO4RUK>vMN^Z0Z`=xX;++sOY+> zt7F|% zlYyE0wUO#h_;ZqD3}zsD#z35Hqt7QhRKWeG7>B7{NOpW~{Mz7t*wOEO^Zo9-d8-q0xRmbHeMa*w!14YU2IRbEr?*J!OM^V|@Kb4@)tcNp8>hX=BO_K0!{NUPyy$-a07vWiGy^ru@`~SS-sle|WSoEpPc-EO{y}8_e z@|D(|YPh|}@toVX={q{QFe#Zg-{@*sf*Z7|eze64w z=N6siePEs2#~Uq<_|k`yub-zUc9Ugs;y&Wu<_cLB?&iw#eEL|rJW0)1mW6ftsb6Zo zt$x>gwi6?8!n1w+(zB|`;c5CSJW0=+&7HCmXjJs$aWl!J)naQ!7%WXhZI9j^Zlt`wUae&fO0>$twylUz0A zbJaLwl=@1OjAp(OM%5(NU+i@QeWl$pQ)`FP|27*=k_<$X`2~I73{;`_Et1JJum}8; zvdLwajZFUnzuWi_GqKaR-#5iS%m01z@a&!bs7aCk9AdO&%KBOT@*QR^-;d07n-OOx zhwJ(m?CZA7TexO_FWVO5LH}d^Y2ULl+aupaF1pv-d$4Nq+?LG1{`h-71KsrUneSG& zK-m>&o z{5>3@0-Kz8!;8y{FAip;7pJ6R#~w8d{55HPuEzaezM*`>+DO&RJ7;^{|Ly;CW1rDz z{M@ik@VN2^%BPll%JbGNTT{8_`879B4Q8U_TDj>pIBDEh^PF+M*WYme=y%&P+*SCi zm!Ia{=JQu!1)RMS<$hLy1vN)|oskyYm1XX^$aWJ>OSgxoiuLxq>IlI?VI_WD^t}ycoH?PjTy720Xs~fI6?zrPlTn>jLA|j%D_Z~fZ+;vxE zWY3;Gd-b~e?%uucxu?&)_eMqC*SBv!r!%_$fB`Z04;(ZocJPp)aq%v9LSoXeQPr*lOIzG~WjE@P^ zNt4vW)2DY)&S^jFViCdAZn2=TQ+3J9DJUpvlZ!IFB}q=qx^+GB&_iRKv5!ps(O~Cr zSF$TX+uNl5`=b!`&5gDSK*w9YU83I6UJWfog~Kwg&HBxa?%)S(dLQt3n?9h83E$js z8#30WzX*=8 z>D$2fpy+sSf&1I^Ux1x9eINLK6pn%YeF!8R;}5fx&K-2tY#JF?7^dNzze zDS=Mk`6%>X4ZSN^`_}=w+4OC!;04(oJ??}&0G0cQ?caq?7nbho@{Ruh^g-z%^}hzk zp>QPh{{)!Q zo_&>Ib96xf>bcNS-4<^Vbo^`6eNfn!?yn4N?JcW+C+fL3*oOJ6BjD2hjnJQl!wayn zzn@7xeK;Slx6|K+-Uo}pb)^3<+tq*EPXDZ(9)x}f6OmT=%a80rAYm~(3e8j`)e@tO6ZkRKOA}_ zHgv4$RSiPY299XsV;pmXn9 zdWc%xuKmV#`j&S3o9*;}Z>Kl4(@#Rj^t9!BzFqxa+v%a)OmcBN%A4z5>YAfGp2yQY z6FnXaCR;H5;YUm;DJ=GQbDlDJd5*V8lsWTDJjF{2T}cU}l2!VTr+605$t=k6z)aI9 zm6elIoZ}UJbh6e9GZ)U&#^GwAcc~}4Xnu|bnI)NOVaZa@oT5eZOH9f(O|GQG5sA?8 zH1=fWmv~C@3#}GN&1}h_x&t$TVF@F(ezU`238U0PSJJS=(HQ3(z_5`5$w?ZL1%{8% zFiK#=Fb%^6MkZ*`%|~gUQNtDH#*>#hKf55u3%Bh2#f3%LdHKnv-I^+0dvo$~3o@Uw z%_Ro>R8EO{=+TEKTl3i#P$t(LH(ciAsd-s>`6a4&5!tllP+3^w72!!&`SbHj9?$XS zXBHr#MOH=&k&(x=T4OOu>XR+pa*d!h-Y)OvNUY6FD2-ktR zX6JKm7hw`f7@BAPqC!~a6c%UaCwUffnKBpV6@i1zlJrN(cK1I>?lVHZ@JN@UvQIKET_`EQEno-y`1TkB{%$X0Da1_R2 z+it@2k049Gy=)vMKK$Fk31&>b2gca!vBLa&!ez533-g)H_h;t7cf@gGkAXeS=EHYr z`Y`@fVftsFu-^j6Y@2Qgs#xxYZvoa?Aox;)JIN|%jNx}oc zqrhyNisH4|7lS#*9Vp9%D(J18v^`YyVwf?Y~!iPDAcPVcXw8et@F=KLl(4BVfjy zikL^i^gj;CcU|4r39xRI+?@X;=??nP;_7Y!P-9tto>uby018!e}dRk zAV;9+wxhth?KtsaU#Td%uZdvoKMAb;r`vp<0JGl)jQdHk&xXuJ(QWgjq zaPHAmtrA8kRY4n|338p-xhHFETrWNuos?<>Gw02aFWBr`!Hkc8>ScV;XFKFJ6vk)U z9bozZ)oa3`;P=4vKLEK8Mf-msJ`m~o-QCwAs`L6|vTw)tNHGv;;3Z^aH5)e2_(C^YDR!uY&Gz}g-zcIMWN ze(>)F*+cB~j|6M~J~n$_VF=YAKH z7(%7tgE`ECoG5kI5UMI)NEmnH%plNFjp8|r~+ZeF9vfg?AMFJ z99mGZ*ygj`=CeY4LLs+{Pk+SODLeqYS2z~D56t+NAwRI$4~hLeD0EwFsx9Z3ZT+;}ig{EHHD+h0GStgQU*3bMe4i zN1kf=Z?*9UF99f2=&jtgIh z{1k=$UqJ@N-VHuy#eN?03R&JcTg5&WJ`pHv%kSILY9er1!RNR>AzX{WyozPY`YcmJ>j{KO~MIXkiT#%GH$cre* zAMI${3vC0!cY}}E_^8e2Q!sNo2YC|3Tt~>W!tCp78(#o3K4Ufuv#%DiDYKG08 zEzFn&;xiR;hcLgZ-zm)RZFhk~2jYH*|J&d&;XUHR?`ro6v#$?OnE!i_AEL1B5VSo6 zW?S-MFmv;wuT#SOj{CGQ@8z$+dOp7f^L-BKsB_>j;q&yL4I{3LVD@_%vYB>pHNI$| z&K&NCPYakikgtdjbGS;MK`5|)OCRA@`bd0!vBI_BcL?to{3fwf{hy&k$hon}lf!8_lzX*9jxEb<_@L9-K zlu&+|fa^LqOqdI+V|D=Rm?7Yfb1eUGF!SjK*@bp6WdsUi;&HBefEkk!3G%$QEdzO;i6K=wz``zHph_vb*c-k-7Hj@edjaW?<4v?C7pPl_|=j}3B&-oRwp7Thw z*Z#eQ>E9R3_^t4Df;lceANzwjE^>_cb6j!sLH_)0+eIJY1llG4B-(|O!FnvC!0c-> zjU;Mf5F~VFg zj-UR#V!`z1HAH;qKLX77^dE!5GlBCkP8h066`%Q#X(-H-|KDVy*w;f&LJ3WQGp@|CAaq>{;lLc9T!hD!Ru`rfGEe3bYx8g4c(|;9Ysm-U1 zKCo9nuD01L#Xbr*%sSyF9D?jy=U)xh`PYaK^HHva%L+>}vmi^nmdw-S#V@q3lANU_ z%EezRUEU)8h)KspSE6#^hu5bHa|&JNFPkpw_fqAWQ&d=ppP;Rg{9~U^xM3>I_ja~O zM%lpJ%2P5SUQLexpi=Rt2V#x*55TS znU`)d6dIX-JMlUUzX2ASpR8jUBN9twUVnmLiZF$aH&IykJG6(jKeem&OBcTcsYrq! z{> 2; + current_rx_bit = (PINA & (1 << RX433)) >> RX433; + + if (prev_rx_bit == current_rx_bit) { + keep_state ++; + if ( current_rx_bit == 0 && keep_state > RX_TRESHOLD * 4 && rx_done == READ && cnt > MIN_PACKET_LEN && cnt < MAX_PACKET_LEN ) { rx_done = DONE; RXBuff[ cnt ] = 5; } // end of packet + } else { + + if ( prev_rx_bit == 0 && keep_state > RX_TRESHOLD * 4 && rx_done == IDLE ) { cnt = 0; rx_done = READ; } // begin of packet + + + if ( rx_done == READ ) { + + if ( prev_rx_bit == 0 ){ + if ( keep_state < RX_TRESHOLD ) current_state = SHORT_LOW; else current_state = LONG_LOW; + } else { + if ( keep_state < RX_TRESHOLD ) current_state = SHORT_HIGH; else current_state = LONG_HIGH; + } + + if (cnt < RX433_BUFF ) { + if (cnt != 0) RXBuff[ cnt-1 ] = current_state; + cnt++; + } else { + rx_done = IDLE; // end of buffer + RXBuff[ cnt ] = 5; + cnt = 0; + } + + } + +/* + // treshold test : 16mHz, output: 13 11 3 3 12 10 4 3 11 11 4 2 12 2 12 3 11 11 4 2 12 11 3 3 11 11 4 2 12 11 3 3 + + if (cnt < RX433_BUFF ) { + RXBuff[ cnt++ ] = keep_state; + } else { + rx_done = DONE; // end + cnt = 0; + } +*/ + keep_state = 0; + } + prev_rx_bit = current_rx_bit; +} + diff --git a/FIRMWARE/uart.c b/FIRMWARE/uart.c new file mode 100644 index 0000000..a13dc51 --- /dev/null +++ b/FIRMWARE/uart.c @@ -0,0 +1,265 @@ +// ----------------------------------------------------------------------------------------------- +// ------------------------------- UART serial data transfer ------------------------------------- +// ----------------------------------------------------------------------------------------------- + +extern void read433_handler( void ); + +void initserial(unsigned long baud); +char kbhit(void); +char getch(void); +char getche(void); +void putch(char c); +void putstr(char *s); + +static volatile uint8_t srx_done, stx_count; +static volatile uint8_t srx_data, srx_mask, srx_tmp, stx_data; + +#define SRX_STR_MAX 30 + +// char srx_str[SRX_STR_MAX]; +uint8_t srx_cnt = 0; +uint8_t srx_ready = false; + +struct COM_STRUCT { + char pref[4]; + char space1; + char dev[1]; +// char space2; +// char qqq[3]; + char space3; + char val[SRX_STR_MAX-7]; +}; + +struct SHORT_COM_STRUCT { + char pref[4]; + char space1; + char val[SRX_STR_MAX-5]; +}; + +union COM_UNION { + char str [SRX_STR_MAX]; + struct COM_STRUCT cmd; + struct SHORT_COM_STRUCT short_cmd; +}; + +union COM_UNION im; + + +// im.str = "IMFR"; +// im.str = "IMLD"; + + +// ------------------------------- serial strings and symbols transfer --------------------------- + +char getch(void){ + while (!srx_done); + srx_done = 0; + return srx_data; +} + + +char kbhit(void){ + return srx_done; +} + +void putch(char c){ + while (stx_count); + stx_data = ~c; + stx_count = 10; +} + +char getche(void) // echo +{ + char c = getch(); + putch(c); + return c; +} + +void putstr(char *s){ + while (*s) putch(*s++); +} + + +void putstr_P(PGM_P str){ + static PGM_P s; + s=str; + while ( pgm_read_byte(s) ) putch( pgm_read_byte(s++) ); +} + + +// ------------------------------------ low level UART -------------------------------------- + +static uint16_t bit_time, start_bit_time; + +void initSerial(unsigned long baud) +{ + + set_output( DDRA, TX ); + output_high( PORTA, TX ); // TX + output_high( PORTA, RX ); // RX + + bit_time = (F_CPU / 8) / baud ; + start_bit_time = bit_time + (bit_time >> 1); + + // OCR1A top value A for Counter1 + // TCNT1 8-bit register contains the value of Timer/Counter1 + + OCR1A = TCNT1 + 1; // probably low bit of 16 bit timer value on a84 + + // TCCR1 Timer/Counter1 Control Register + // CS10 prescaler none + // CS12 prescaler CK/8 + // CS10 + CS12 prescaler CK/16 (in PLL mode) + // COM1A1 + COM1A0 Set the OC1A output line on compare match + +// TCCR1 |= (1 << CS10) | (1 << CS12); +// TCCR1 |= (1 << COM1A1) | (1 << COM1A0); + + TCCR1B |= (1 << CS11); + TCCR1A |= (1 << COM1A1) | (1 << COM1A0); // PA6? output TX + + // OCIE1A Timer/Counter1 Output Compare Match A Interrupt Enable + +// TIMSK |= (1 << OCIE1A); + TIMSK1 |= (1 << OCIE1A); + + // PCMSK Pin Change Enable Mask 0 (for RX) + // PCIE Pin Change Interrupt Enable (for RX) + +// PCMSK |= (1 << PCINT0); +// GIMSK |= (1 << PCIE); + + PCMSK0 |= (1 << PCINT7); + GIMSK |= (1 << PCIE0); // PCINT7..0 pin + + stx_count = 0; + srx_done = 0; +} + +// ISR(PCINT0_vect) // RX pin was pinged +ISR(PCINT0_vect) // RX pin was pinged Pin change interrupt 0 (source 7, see above) +{ + cli(); + if ( PINA & (1 << RX) ) return; + + // OCR1B top value B for Counter1 + // TCNT1 8-bit register contains the value of Timer/Counter1 + + OCR1B = TCNT1 + (uint16_t) (start_bit_time); // maybe OCR1BL + + srx_tmp = 0; + srx_mask = 1; + + // TIFR Timer/Counter Interrupt Flag Register + // OCF1B bit is set (one) when compare match occurs in OCR1B - Output Compare Register 1A + // forsed interrupt execution ??? + // TIFR = (1 << OCF1B); + +// TIFR |= (1 << OCF1B); + TIFR1 |= (1 << OCF1B); + +////// TIFR &= ~(1 << OCF1A); // added + + if ( !(PINA & (1 << RX)) ) { // when RX not changed ??? + + // Enable compare Timer/Counter1 Output Compare Match A & Match B Interrupt +/////// TIMSK = (1 << OCIE1A) ^ (1 << OCIE1B); + +// TIMSK |= (1 << OCIE1A) | (1 << OCIE1B); + TIMSK1 |= (1 << OCIE1A) | (1 << OCIE1B); + +/////// TIMSK &= ~(1 << TOIE1); // added + +/////// TIMSK |= (1 << OCIE1A); +/////// TIMSK |= (1 << OCIE1B); + + // Pin Change disable Mask for PB0 +// PCMSK &= ~(1 << PCINT0); + PCMSK0 &= ~(1 << PCINT7); + } + sei(); +} + + +ISR(TIM1_COMPB_vect) // RX +{ + cli(); + uint8_t in = PINA; + + if (srx_mask) { + if (in & (1 << RX)) srx_tmp |= srx_mask; + srx_mask <<= 1; + // OCR1B top value B for Counter1 + OCR1B = OCR1B + bit_time; + } else { + srx_done = 1; + srx_data = srx_tmp; + + // collect string until '\n' (0x0a), for uninterruptable receiveing of strings +// if ( srx_cnt < SRX_STR_MAX ) srx_str[ srx_cnt++ ] = srx_data; + if ( srx_cnt < SRX_STR_MAX ) im.str[ srx_cnt++ ] = srx_data; + if ( srx_data == 0x0a ) { +// srx_str[ srx_cnt ] = 0; + im.str[ srx_cnt ] = 0; + srx_ready = true; + srx_cnt = 0; + } + + // Enable compare Timer/Counter1 Output Compare Match A Interrupt +// TIMSK |= (1 << OCIE1A); +// TIMSK &= ~(1 << OCIE1B); + + TIMSK1 |= (1 << OCIE1A); + TIMSK1 &= ~(1 << OCIE1B); + + // Pin Change Enable Mask for PB0 +// PCMSK |= (1 << PCINT0); + PCMSK0 |= (1 << PCINT7); + } + sei(); +} + + +ISR(TIM1_COMPA_vect) // TX +{ + cli(); + uint8_t count; + +// PORTB ^= 0b100; // check sampling frequency + + // OCR1A top value A for Counter1 + OCR1A = OCR1A + bit_time; + + count = stx_count; + + if (count) { + stx_count = --count; + + if (count != 9) { + + if (!(stx_data & 1)) { + // Set OC1A output line (COM1A1 initially 1) +// TCCR1 |= (1 << COM1A0); + TCCR1A |= (1 << COM1A0); + } else { + // Clear OC1A output line (COM1A1 initially 1) +// TCCR1 &= ~(1 << COM1A0); + TCCR1A &= ~(1 << COM1A0); + } + + stx_data >>= 1; + + } else { + // Clear OC1A output line (COM1A1 initially 1) +// TCCR1 &= ~(1 << COM1A0); + TCCR1A &= ~(1 << COM1A0); + } + } else { + read433_handler(); + pwm_scale_handler(); +// beep_handler(); +// pwm_handler(); + } + sei(); +} + diff --git a/HARDWARE/RF_RX.kicad_pcb b/HARDWARE/RF_RX.kicad_pcb new file mode 100644 index 0000000..4a47a07 --- /dev/null +++ b/HARDWARE/RF_RX.kicad_pcb @@ -0,0 +1,14991 @@ +(kicad_pcb (version 20221018) (generator pcbnew) + + (general + (thickness 1.6) + ) + + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + + (setup + (pad_to_mask_clearance 0) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros false) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (sketchpadsonfab false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + + (net 0 "") + (net 1 "Net-(BZ1--)") + (net 2 "GNDD") + (net 3 "Net-(C1-Pad1)") + (net 4 "Net-(C2-Pad2)") + (net 5 "+3.3V") + (net 6 "Net-(Q1-D)") + (net 7 "Net-(D1-Pad2)") + (net 8 "R in") + (net 9 "L in") + (net 10 "MOSI") + (net 11 "PRi IR in") + (net 12 "RPi IR out") + (net 13 "Net-(D2-Pad1)") + (net 14 "unconnected-(J13-Pin_3-Pad3)") + (net 15 "Net-(J14-Pin_1)") + (net 16 "MISO") + (net 17 "SCK") + (net 18 "RST") + (net 19 "Net-(JP1-A)") + (net 20 "Net-(JP1-C)") + (net 21 "Net-(JP2-A)") + (net 22 "Net-(JP2-C)") + (net 23 "Net-(Q1-G)") + (net 24 "Net-(U2-PA1)") + (net 25 "Net-(U2-XTAL1{slash}PB0)") + (net 26 "Net-(U2-XTAL2{slash}PB1)") + (net 27 "unconnected-(U2-AREF{slash}PA0-Pad13)") + (net 28 "unconnected-(J14-Pin_3-Pad3)") + (net 29 "+5V") + (net 30 "Net-(J13-Pin_2)") + (net 31 "Net-(J1-Pin_1)") + (net 32 "Net-(J2-Pin_1)") + (net 33 "Net-(J3-Pin_1)") + (net 34 "Net-(J4-Pin_2)") + (net 35 "unconnected-(J5-Pin_3-Pad3)") + (net 36 "unconnected-(J5-Pin_5-Pad5)") + (net 37 "unconnected-(J5-Pin_7-Pad7)") + (net 38 "Net-(J5-Pin_10)") + (net 39 "unconnected-(J5-Pin_11-Pad11)") + (net 40 "unconnected-(J5-Pin_12-Pad12)") + (net 41 "unconnected-(J5-Pin_13-Pad13)") + (net 42 "unconnected-(J5-Pin_15-Pad15)") + (net 43 "unconnected-(J5-Pin_16-Pad16)") + (net 44 "unconnected-(J5-Pin_17-Pad17)") + (net 45 "unconnected-(J5-Pin_18-Pad18)") + (net 46 "unconnected-(J5-Pin_19-Pad19)") + (net 47 "unconnected-(J5-Pin_21-Pad21)") + (net 48 "unconnected-(J5-Pin_24-Pad24)") + (net 49 "unconnected-(J5-Pin_26-Pad26)") + (net 50 "unconnected-(J5-Pin_27-Pad27)") + (net 51 "unconnected-(J5-Pin_28-Pad28)") + (net 52 "Net-(J5-Pin_29)") + (net 53 "Net-(J5-Pin_31)") + (net 54 "Net-(J5-Pin_32)") + (net 55 "Net-(J5-Pin_33)") + (net 56 "Net-(J5-Pin_35)") + (net 57 "Net-(J5-Pin_37)") + (net 58 "Net-(J13-Pin_1)") + (net 59 "Net-(J15-Pin_1)") + (net 60 "unconnected-(J13-Pin_4-Pad4)") + (net 61 "unconnected-(J13-Pin_5-Pad5)") + (net 62 "unconnected-(J13-Pin_9-Pad9)") + (net 63 "unconnected-(J13-Pin_10-Pad10)") + (net 64 "unconnected-(J13-Pin_11-Pad11)") + (net 65 "unconnected-(J15-Pin_3-Pad3)") + (net 66 "unconnected-(J14-Pin_4-Pad4)") + (net 67 "unconnected-(J14-Pin_5-Pad5)") + (net 68 "unconnected-(J14-Pin_9-Pad9)") + (net 69 "unconnected-(J14-Pin_10-Pad10)") + (net 70 "unconnected-(J14-Pin_11-Pad11)") + (net 71 "Net-(J16-Pin_1)") + (net 72 "unconnected-(J15-Pin_4-Pad4)") + (net 73 "unconnected-(J15-Pin_5-Pad5)") + (net 74 "unconnected-(J15-Pin_9-Pad9)") + (net 75 "unconnected-(J15-Pin_10-Pad10)") + (net 76 "unconnected-(J15-Pin_11-Pad11)") + (net 77 "Net-(J10-Pin_3)") + (net 78 "Net-(J10-Pin_2)") + (net 79 "Net-(J5-Pin_8)") + (net 80 "Net-(U2-PA7)") + (net 81 "Net-(J17-Pin_1)") + (net 82 "Net-(J18-Pin_1)") + (net 83 "Net-(U3-+Vout)") + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 01db8efe-eacc-44fd-be42-b61bdd32f8ac) + (at 82.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 64aeb0f0-4aef-4cc4-946f-ad08d0e02065) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 5504be49-986d-4812-b767-74fcd3de78bc) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 2717659d-c7ed-47fd-84be-fca9dcfe508d)) + ) + + (footprint "Connector_PinSocket_1.27mm:PinSocket_1x11_P1.27mm_Vertical" (layer "F.Cu") + (tstamp 0513ffb7-e106-4acf-8340-0d7ea2b3b521) + (at 88.43 107.061 -90) + (descr "Through hole straight socket strip, 1x11, 1.27mm pitch, single row (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 1x11 1.27mm single row") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/21439a0e-e038-4722-a592-42a42584469b") + (attr through_hole) + (fp_text reference "J15" (at 0 -2.135 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 66e915a7-2fd8-494d-bae6-36b21447f6ff) + ) + (fp_text value "BT TX" (at 0 14.835 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4ad14dd5-7ced-4bab-a489-81441964ed36) + ) + (fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9a4b483c-388c-4fa5-8915-c20c8411ed9a) + ) + (fp_line (start -1.33 0.635) (end -1.33 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0109357-97e8-4ec0-a91c-118ade820ca4)) + (fp_line (start -1.33 0.635) (end -0.76 0.635) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65e06a5a-727f-4cef-b7bb-647daa5c70b6)) + (fp_line (start -1.33 13.395) (end -0.30753 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97494c9e-99c1-4141-83c7-e351caf15931)) + (fp_line (start 0 -0.76) (end 1.33 -0.76) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2081f92f-c89c-4cd6-8d8d-a5601d53ddbf)) + (fp_line (start 0.30753 13.395) (end 1.33 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1dd4c4d-a7ed-45ba-a077-f73b81cf4ab6)) + (fp_line (start 0.76 0.635) (end 1.33 0.635) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e9fc7e9-8b87-43a3-8799-51dd6e09bffd)) + (fp_line (start 1.33 -0.76) (end 1.33 0) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 939bdcc5-ad0f-4b63-942e-652a963fced9)) + (fp_line (start 1.33 0.635) (end 1.33 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70ba240d-2eef-4522-a6ad-5f25e9c84115)) + (fp_line (start -1.8 -1.15) (end 1.75 -1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3b1f637-32e0-481c-9e5e-076bacb6ff1a)) + (fp_line (start -1.8 13.85) (end -1.8 -1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8aaa0aac-5a91-4b3e-96c6-21077505f8d3)) + (fp_line (start 1.75 -1.15) (end 1.75 13.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43e75574-6400-4859-aca2-8fcfdd91fda3)) + (fp_line (start 1.75 13.85) (end -1.8 13.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 063b69de-895f-48b0-91e1-20d69541f8f1)) + (fp_line (start -1.27 -0.635) (end 0.635 -0.635) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 912a6051-8bcb-4dce-be00-55c7a569fc65)) + (fp_line (start -1.27 13.335) (end -1.27 -0.635) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83ed69fc-0de0-47c9-b268-d3c6deb43e7c)) + (fp_line (start 0.635 -0.635) (end 1.27 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa5e93b9-097a-4e1f-8709-bc7e7a2b473d)) + (fp_line (start 1.27 0) (end 1.27 13.335) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b2ff9c1-4c24-4912-86eb-2c4a2a0130bd)) + (fp_line (start 1.27 13.335) (end -1.27 13.335) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27f60efb-e0fb-4200-8258-f5c2c6ed0124)) + (pad "1" thru_hole rect (at 0 0 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 59 "Net-(J15-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp ae245971-a9ad-4f38-bec3-c19c9dc911c6)) + (pad "2" thru_hole oval (at 0 1.27 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 30 "Net-(J13-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp c90e337a-4572-41ac-9fce-d64149fa86c4)) + (pad "3" thru_hole oval (at 0 2.54 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 65 "unconnected-(J15-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp e6fe5e62-7a81-41fc-8b61-6aac49a68b45)) + (pad "4" thru_hole oval (at 0 3.81 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 72 "unconnected-(J15-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 2c0b4687-f5a6-47be-b58e-4cca43ee180e)) + (pad "5" thru_hole oval (at 0 5.08 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 73 "unconnected-(J15-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 17022c3c-eac2-4107-8095-f558bf2190dc)) + (pad "6" thru_hole oval (at 0 6.35 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 9 "L in") (pinfunction "Pin_6") (pintype "passive") (tstamp eb52a469-2faf-43b4-8840-9663d6891ae0)) + (pad "7" thru_hole oval (at 0 7.62 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 8 "R in") (pinfunction "Pin_7") (pintype "passive") (tstamp 02541cbc-79ae-46a0-b0a6-67876cb1717d)) + (pad "8" thru_hole oval (at 0 8.89 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_8") (pintype "passive") (tstamp ee8e0851-cf53-4cf6-ad82-4d6083ab3953)) + (pad "9" thru_hole oval (at 0 10.16 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 74 "unconnected-(J15-Pin_9-Pad9)") (pinfunction "Pin_9") (pintype "passive") (tstamp ac336145-01cf-4e93-a1e1-b7726015252a)) + (pad "10" thru_hole oval (at 0 11.43 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 75 "unconnected-(J15-Pin_10-Pad10)") (pinfunction "Pin_10") (pintype "passive") (tstamp 67c0f61f-2afd-4ad9-bfef-42d0e483f905)) + (pad "11" thru_hole oval (at 0 12.7 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 76 "unconnected-(J15-Pin_11-Pad11)") (pinfunction "Pin_11") (pintype "passive") (tstamp a9f4b4f4-876a-4fdb-b122-b6df6f88bc7e)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_1.27mm.3dshapes/PinSocket_1x11_P1.27mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinSocket_1.27mm:PinSocket_1x11_P1.27mm_Vertical" (layer "F.Cu") + (tstamp 0586ddcc-a626-4a9c-b857-e97ba59a53e0) + (at 88.42 115.8 -90) + (descr "Through hole straight socket strip, 1x11, 1.27mm pitch, single row (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 1x11 1.27mm single row") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/77dd8bc3-445a-4a00-8c84-bb3b40d6fb78") + (attr through_hole) + (fp_text reference "J13" (at 0 -2.135 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fca2783c-0d32-4e3a-a48b-14add2030cd7) + ) + (fp_text value "BT TX" (at 0 14.835 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 87dce695-c39a-47ec-a6ec-f6b090ee7919) + ) + (fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 89cfbb2c-568d-4351-bb1b-e4c074987b7a) + ) + (fp_line (start -1.33 0.635) (end -1.33 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c72c304f-338e-4798-95ae-9b39e9ac8e49)) + (fp_line (start -1.33 0.635) (end -0.76 0.635) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5303669a-8ff9-473c-aad5-7ed2f1251c62)) + (fp_line (start -1.33 13.395) (end -0.30753 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab4c94c4-7b90-4929-84ca-472bb29e5a6a)) + (fp_line (start 0 -0.76) (end 1.33 -0.76) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9b25235-ae55-4b10-b8bc-c55b94e5f72f)) + (fp_line (start 0.30753 13.395) (end 1.33 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4952ccd7-394d-46e3-8136-8b454ef935b0)) + (fp_line (start 0.76 0.635) (end 1.33 0.635) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba55d9df-59d4-411a-a3bb-8db3fc5b627a)) + (fp_line (start 1.33 -0.76) (end 1.33 0) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c16744c-715c-485c-b2e7-cb86d94947c8)) + (fp_line (start 1.33 0.635) (end 1.33 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 170ff0f3-8708-4ae5-a4ea-603fab1e6eb3)) + (fp_line (start -1.8 -1.15) (end 1.75 -1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f06b8d4f-0f71-4187-8dc0-757958d4bd7c)) + (fp_line (start -1.8 13.85) (end -1.8 -1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27c92b95-7133-4685-8ef2-a4b3081f7c8c)) + (fp_line (start 1.75 -1.15) (end 1.75 13.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04d87291-d10a-4683-9fa0-d1d4e11cf505)) + (fp_line (start 1.75 13.85) (end -1.8 13.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c3fa51a-b3ed-4dd0-bee0-39b14193d8c6)) + (fp_line (start -1.27 -0.635) (end 0.635 -0.635) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3c5cf9e-34a2-4d4b-9c72-5dd75aa5fc65)) + (fp_line (start -1.27 13.335) (end -1.27 -0.635) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3d67e59-88ea-462a-8a1b-0d7dc244dd2c)) + (fp_line (start 0.635 -0.635) (end 1.27 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8919c2d3-2a04-464e-b671-dbf109ff3034)) + (fp_line (start 1.27 0) (end 1.27 13.335) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dfff6997-a49f-48a9-b4b9-e195fb3fd018)) + (fp_line (start 1.27 13.335) (end -1.27 13.335) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c83c6765-b02a-445c-930e-49951f490a74)) + (pad "1" thru_hole rect (at 0 0 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 58 "Net-(J13-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 7dcf792c-ac44-4864-ad64-b4fc266eadd3)) + (pad "2" thru_hole oval (at 0 1.27 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 30 "Net-(J13-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp daacdd42-8edb-4303-8aef-675c39a4e3c6)) + (pad "3" thru_hole oval (at 0 2.54 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 14 "unconnected-(J13-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 254bd957-ea6a-4823-aa67-37d8b2a5294f)) + (pad "4" thru_hole oval (at 0 3.81 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 60 "unconnected-(J13-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 2fc0260e-6891-4017-b1b0-eb29685df57b)) + (pad "5" thru_hole oval (at 0 5.08 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 61 "unconnected-(J13-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 0f275182-0c75-4c87-a77b-0a71ba7807db)) + (pad "6" thru_hole oval (at 0 6.35 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 9 "L in") (pinfunction "Pin_6") (pintype "passive") (tstamp 960ae8d0-ab6b-4687-9d5a-ba82c9199028)) + (pad "7" thru_hole oval (at 0 7.62 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 8 "R in") (pinfunction "Pin_7") (pintype "passive") (tstamp c4f02bf2-39ab-4a33-9337-892f746dc5d5)) + (pad "8" thru_hole oval (at 0 8.89 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_8") (pintype "passive") (tstamp 3f1a9dcb-6611-4d7d-b380-213a6d9f8c73)) + (pad "9" thru_hole oval (at 0 10.16 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 62 "unconnected-(J13-Pin_9-Pad9)") (pinfunction "Pin_9") (pintype "passive") (tstamp fae88296-5381-4ae0-9ee3-157d68a99e2e)) + (pad "10" thru_hole oval (at 0 11.43 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 63 "unconnected-(J13-Pin_10-Pad10)") (pinfunction "Pin_10") (pintype "passive") (tstamp fe095379-08da-4d8c-8844-941fb122fed2)) + (pad "11" thru_hole oval (at 0 12.7 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 64 "unconnected-(J13-Pin_11-Pad11)") (pinfunction "Pin_11") (pintype "passive") (tstamp 4ae2ead0-f2db-4c69-bcb4-b3f34c05d8b7)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_1.27mm.3dshapes/PinSocket_1x11_P1.27mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp 086879b1-38ee-4e75-a75d-150e5079850c) + (at 85.7 80.7 -90) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/fda17c3f-ff2b-4ead-9df2-799060299cbb") + (attr smd) + (fp_text reference "R7" (at 0 -1.65 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4c3f1c8a-9793-4ab6-8f7b-8aa1ca53e58e) + ) + (fp_text value "1K" (at 0 1.65 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 45a7e0b6-efca-493c-9d47-8edec3325f46) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 4973eb9c-c779-4791-8f1a-2de85591d799) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71e7ced9-4660-4af7-806c-a67c10943b21)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6434c3c6-a8e4-4c6e-a6e4-703c83c8c3f1)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e97431a2-5645-48a5-8a1c-8f30a62c461b)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bee36bba-cd9c-4756-9bc8-296c72faa2dd)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1473fd46-b856-46cd-83cd-116e40436cb1)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5f21a68-62ae-4885-be62-3f72d5ad2989)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f29aab5-229d-4060-975c-38e514239ced)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0184023-eeae-4132-ac35-429693e82c2c)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5840ced2-6419-4a24-acba-46d728d28358)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45f19e11-e01b-4dfc-ad4f-6a342fcdc937)) + (pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 24 "Net-(U2-PA1)") (pintype "passive") (tstamp 7e7ded00-0ad6-4a02-901d-81dabbef99dc)) + (pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 77 "Net-(J10-Pin_3)") (pintype "passive") (tstamp a329babe-32cd-4848-875b-8d3f24d7091b)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 0905797e-84ef-49ea-8cdc-8e4b0e1b7a11) + (at 93.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 1a33dd00-7444-4731-98fb-c6339f68e28e) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp c72dc3bb-e90e-4803-afe1-7e81ea511ed1) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 326c0288-7454-4a47-b6d9-fe3ac0609a77)) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp 092a086f-cdad-49bb-aeee-e632606a495a) + (at 90.1 119.1 -90) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/21d0e3c9-9f99-4590-ab07-668ab993dcc9") + (attr smd) + (fp_text reference "R1" (at 0 -1.65 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2fa7d0cb-1d7f-4441-97ec-92d4e878ba9b) + ) + (fp_text value "270" (at 0 1.65 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp aea7c402-a46e-413f-be66-f58b5e6a48b1) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp f8c6bef4-f130-4c45-bdb8-c6b5a78399ba) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd1a6b7c-d471-4670-a282-0fdb8ec5fbba)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12d5b075-c2c6-441e-b862-f157a614a01a)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20687c43-f5a3-4127-844d-599ec74f5960)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed586aab-bae5-43e2-976f-5168fe668acd)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 578dea45-70db-4768-bb34-f43c7537cd4c)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1146573-4183-429e-8aa0-bbbacd2ef243)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72c8b1a2-d559-4d5f-aa6b-9a287fc03a05)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c3fd8ea-1f4e-4bf2-afce-665c67cb358c)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d151c6f-284e-4bb5-9773-abe15320ba00)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a941343f-e24d-4635-961c-f8b767a76785)) + (pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 55 "Net-(J5-Pin_33)") (pintype "passive") (tstamp 6b251f82-ad8d-493c-8db7-7c85541982e6)) + (pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 3 "Net-(C1-Pad1)") (pintype "passive") (tstamp ac570a71-cb3c-4b01-8dbb-27096579eb85)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 099ae2df-7e37-4553-b253-c6983563bdd7) + (at 94.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp c7dc7322-25d0-4be0-9dca-98938325b905) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp debeac35-87c2-45a2-88ef-192438d53583) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 60f88403-a9e6-4e5c-8895-7d8f97bbdf29)) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 0efbcfb6-6a7f-4d9e-98a4-3d0a40537645) + (at 90.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 4476c26d-9432-4405-899b-97444b5b9b58) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 0c02dc73-72bb-4b0a-b147-6de7acb324dc) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp fc11bf8d-b13e-4d70-a19e-f2723de2a832)) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 1123c543-4674-4582-ba42-b36dcb36eece) + (at 91.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 8d16d2c8-9e27-4c79-a19b-bc54c7a4e407) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 14cd9093-53ff-4497-bd47-08ed5fa41094) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 1199c140-3a00-414c-9d3d-854b491c0263)) + ) + + (footprint "digikey-footprints:LED_5mm_Radial" (layer "F.Cu") + (tstamp 151559b4-f9ab-4ba9-ae26-7e16d84ba135) + (at 76.5 89.1 90) + (descr "http://optoelectronics.liteon.com/upload/download/DS20-2000-343/1CHKxKNN.pdf") + (property "Category" "Optoelectronics") + (property "DK_Datasheet_Link" "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (property "DK_Detail_Page" "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955") + (property "Description" "EMITTER IR 950NM 100MA RADIAL") + (property "Digi-Key_PN" "475-2919-ND") + (property "Family" "Infrared, UV, Visible Emitters") + (property "MPN" "SFH 4545") + (property "Manufacturer" "OSRAM Opto Semiconductors Inc.") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "Status" "Active") + (property "ki_description" "EMITTER IR 950NM 100MA RADIAL") + (property "ki_keywords" "475-2919-ND") + (path "/57c6abfe-800a-4161-a1af-d62b98b60e66") + (attr through_hole) + (fp_text reference "D1" (at 0 -5.08 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp af62e246-7b25-4f1b-963b-3abf25128598) + ) + (fp_text value "SFH_4545" (at 0 5.08 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a864ccea-8a4f-4842-b69b-79a6b256ac54) + ) + (fp_text user "${REFERENCE}" (at -1.26 0.01 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp af1c2a38-db80-4938-9c4c-804edd5158b0) + ) + (fp_line (start 1.34 1.6) (end 1.34 -1.61) + (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp c5ff659d-945d-42d3-aad3-2ae0659b1dca)) + (fp_arc (start 1.341718 1.607211) (mid -4.336626 0.001638) (end 1.34 -1.61) + (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp db34386c-124e-43f7-a8aa-c2672dd361b4)) + (fp_circle (center -1.27 0) (end -4.57 0) + (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 0d7a040e-538d-4b08-be8a-7b7f61be3753)) + (fp_line (start -4.22 -0.01) (end -4.22 -0.01) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 067efacf-88dc-4429-bb76-b38609ef54a4)) + (fp_line (start 1.23 -1.58) (end 1.23 1.58) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5e3c5af8-9030-4a6b-8e39-7caa8f9554a3)) + (fp_arc (start 1.23 1.58) (mid -4.227431 0) (end 1.23 -1.58) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d835045a-1905-4fea-953d-d004303f803d)) + (pad "1" thru_hole rect (at -2.54 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") + (net 29 "+5V") (pintype "passive") (tstamp 7d3c010e-9c99-4b1e-9ec2-afa64960a88c)) + (pad "2" thru_hole circle (at 0 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") + (net 7 "Net-(D1-Pad2)") (pintype "passive") (tstamp 764aa443-30aa-43f0-839c-f78ea9c11a4f)) + ) + + (footprint "Button_Switch_SMD:SW_Push_1P1T_NO_6x6mm_H9.5mm" (layer "F.Cu") + (tstamp 16f86b67-f5d4-48a9-ae90-4596bcca9d1b) + (at 83.566 98.806 -90) + (descr "tactile push button, 6x6mm e.g. PTS645xx series, height=9.5mm") + (tags "tact sw push 6mm smd") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Single Pole Single Throw (SPST) switch") + (property "ki_keywords" "switch lever") + (path "/7d4f8969-7510-4263-ae4c-cbee0b8eaae6") + (attr smd) + (fp_text reference "SW1" (at 0 -4.05 -270) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 26642f99-ec1e-4bee-a2f9-db5323914d14) + ) + (fp_text value "RST" (at 0 4.15 -270) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e1777e15-5b0e-44f0-812a-fcc4d46e5973) + ) + (fp_text user "${REFERENCE}" (at 0 -4.05 -270) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f82907fc-e6b8-4e1d-828e-75fd32eebdd2) + ) + (fp_line (start -3.23 -3.23) (end 3.23 -3.23) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65cf5ece-4dec-44de-be3a-c8ff654bbf8d)) + (fp_line (start -3.23 -3.2) (end -3.23 -3.23) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82e847c8-faae-418f-8bbf-4acf896a3c1b)) + (fp_line (start -3.23 -1.3) (end -3.23 1.3) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ebf0ef2-3a53-4a78-ad7e-3e1c20560132)) + (fp_line (start -3.23 3.23) (end -3.23 3.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66da2d6f-a05e-4632-a2bb-24b116f9bddb)) + (fp_line (start -3.23 3.23) (end 3.23 3.23) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9e24bb2-8536-492c-a812-ca514e8dda3b)) + (fp_line (start 3.23 -3.23) (end 3.23 -3.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc6e84a2-9a34-4dd9-bf4d-3bb7226c47f2)) + (fp_line (start 3.23 -1.3) (end 3.23 1.3) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c7338d8-90b0-4194-bb27-e3718261ebe4)) + (fp_line (start 3.23 3.23) (end 3.23 3.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09f0e67d-882b-46ab-8be3-cc0dd122805f)) + (fp_line (start -5 -3.25) (end -5 3.25) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e5d3bea-bae0-4a5f-a169-d94263127fb8)) + (fp_line (start -5 -3.25) (end 5 -3.25) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9bf477b3-574d-4f6d-a4c6-94c5cccde783)) + (fp_line (start -5 3.25) (end 5 3.25) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4738feb8-d16e-459c-af1a-dd41e2330885)) + (fp_line (start 5 3.25) (end 5 -3.25) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fdf9bcc7-0aed-45ec-8a1e-75e47261ae08)) + (fp_line (start -3 -3) (end -3 3) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 665f11ee-83a4-4753-bae0-69967446f2c6)) + (fp_line (start -3 3) (end 3 3) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3db22029-f8cc-4215-a4bb-cbe0ca4cc96b)) + (fp_line (start 3 -3) (end -3 -3) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb98f71d-913b-4290-a0bb-6d4fee89b20d)) + (fp_line (start 3 3) (end 3 -3) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c679cc40-84e6-4418-bed4-87372aa57c4e)) + (fp_circle (center 0 0) (end 1.75 -0.05) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 98309c94-c46f-44f4-8cc1-f4dbd7ca240e)) + (pad "1" smd rect (at -3.975 -2.25 270) (size 1.55 1.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 77 "Net-(J10-Pin_3)") (pinfunction "A") (pintype "passive") (tstamp 1d9573ed-8a4c-4d57-89be-1d200c32dcca)) + (pad "1" smd rect (at 3.975 -2.25 270) (size 1.55 1.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 77 "Net-(J10-Pin_3)") (pinfunction "A") (pintype "passive") (tstamp 8f63eff3-3671-458e-8659-ee7a068758cb)) + (pad "2" smd rect (at -3.975 2.25 270) (size 1.55 1.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GNDD") (pinfunction "B") (pintype "passive") (tstamp ff68b7c6-c931-45b3-8a6a-7f68de1cfdd3)) + (pad "2" smd rect (at 3.975 2.25 270) (size 1.55 1.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GNDD") (pinfunction "B") (pintype "passive") (tstamp ed080d7c-7cd3-4e04-b6f1-91081704c77b)) + (model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_PUSH_6mm_H9.5mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp 1b44da94-6299-4cfc-b2c8-75d56b786043) + (at 94.6875 79.8 180) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/3dc243ce-d631-4adb-a6e2-1c3e98a5bfa0") + (attr smd) + (fp_text reference "R16" (at 0 -1.65) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 02b93809-5d0a-45e9-8baf-e38acb53024a) + ) + (fp_text value "56" (at 0 1.65) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f3bd40c1-a0c4-41b9-b128-5ab9773cdaaa) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 23118460-144b-40d3-a07a-216512491084) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0cae86b2-0f1b-4e29-b980-e7906b7a6b70)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94653804-31ae-4575-9cf0-478967395f25)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2200633-cd2c-4be3-b818-c0e8b7421fe2)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33ed7767-0b21-4232-a324-772bb0f5cfa5)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b67ce35-f693-42a4-b8a1-904e7aa8167d)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89540509-8846-4fae-b9dc-7bcfc80cffbb)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 844ea7da-4bd5-4dac-9545-61db7dd0031c)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b8c8feb8-34a4-4767-ac2e-d7f230273790)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f028f2bc-9636-4d66-ad8b-4de29dc87c51)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 981fafd5-437d-4285-86da-a2e73a4894fa)) + (pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 79 "Net-(J5-Pin_8)") (pintype "passive") (tstamp 1ae4f1f4-deeb-45da-b92a-8b90332cff18)) + (pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 10 "MOSI") (pintype "passive") (tstamp c73d2e90-ea9a-4bc5-9f63-29b2005b895b)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 1ed24ebf-98df-42a8-848d-b0690d84b137) + (at 99.3 104.59) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp fec7966d-9796-4804-80f2-72cad3278aac) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp e7167925-729b-45a3-8d72-5c5754abb0a7) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 9b75dc60-a61a-4177-a1bb-701c1b64041a)) + ) + + (footprint "MY:Oscillator_SMD_GEYER_KX_3.1x3.7mm" (layer "F.Cu") + (tstamp 2bd12fbb-ca6f-4bd6-bb08-efa44b9711ff) + (at 87.076 67.785 90) + (descr "3.2x2.5mm, 6-pin QFN (https://www.sitime.com/datasheet/SiT9365 page 13)") + (tags "SMD SMT mems oscillator") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Three pin crystal, GND on pin 3") + (property "ki_keywords" "quartz ceramic resonator oscillator") + (path "/901b613a-d3bf-4cb9-a644-6de88e8863a4") + (attr smd) + (fp_text reference "Y1" (at 0 -3.302 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8a57fdd3-6d20-4832-9e75-27dd73213a5c) + ) + (fp_text value "Crystal_GND3" (at 0 3.556 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 39cafb3b-b690-46a7-b25b-f4644619b58a) + ) + (fp_text user "${REFERENCE}" (at 3.048 -1.524) (layer "F.Fab") + (effects (font (size 0.7 0.7) (thickness 0.105))) + (tstamp b43dbebe-1bc7-4886-b1bc-ddcf9e6e59da) + ) + (fp_line (start -1.778 -2.286) (end -1.778 2.286) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc602af4-5f8f-4383-956f-82c0292a6311)) + (fp_line (start 1.778 -2.286) (end -1.778 -2.286) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d0cc637-dee7-4729-ad59-32c95a395301)) + (fp_line (start 1.778 -2.286) (end 1.778 2.286) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76a32340-16d1-4543-ac2e-fae8ad37219c)) + (fp_line (start 1.778 2.286) (end -1.778 2.286) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d469cc25-2aea-4015-a6dd-99e13baf44ad)) + (fp_line (start -1.778 -2.286) (end -1.778 2.286) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd43a1c5-7238-469d-98b1-89d70d467601)) + (fp_line (start -1.778 2.286) (end 1.778 2.286) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db3abd6e-c8f8-4fb0-b378-9d22bf1b09d9)) + (fp_line (start 1.778 -2.286) (end -1.778 -2.286) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48ca8915-88bd-4f30-99be-c35f5ac65777)) + (fp_line (start 1.778 2.286) (end 1.778 -2.286) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38db75c9-24db-49e5-97f0-cf676dae2ca7)) + (fp_line (start -1.778 -2.286) (end 1.778 -2.286) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 413bf35e-ecbd-454a-881f-a9464a18929f)) + (fp_line (start -1.778 2.286) (end -1.778 -2.286) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb8be382-8346-4028-b1eb-750c42803e45)) + (fp_line (start 1.778 -2.286) (end 1.778 1.6) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9a9779c0-a2dd-4aa3-bfc6-19470804250a)) + (fp_line (start 1.778 2.286) (end -1.758 2.286) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a42eda1-402a-44dc-86c6-0ecefb54132e)) + (pad "1" smd roundrect (at -0.015 -1.524 90) (size 3.1 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 26 "Net-(U2-XTAL2{slash}PB1)") (pinfunction "1") (pintype "passive") (tstamp 77fdb648-e73d-4f62-a575-2abcf1a0df08)) + (pad "2" smd roundrect (at 0 1.524 90) (size 3.1 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 25 "Net-(U2-XTAL1{slash}PB0)") (pinfunction "2") (pintype "passive") (tstamp 9e7ec27d-21eb-46ca-a869-f6cb8f9cad54)) + (pad "3" smd roundrect (at -0.015 0 90) (size 3.1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GNDD") (pinfunction "3") (pintype "passive") (tstamp 0c50e02d-32c2-4956-a2d3-90c5aef3f9cf)) + (model "${KICAD7_3DMODEL_DIR}/Oscillator.3dshapes/Oscillator_SMD_SiTime_PQFD-6L_3.2x2.5mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tstamp 2f841715-9ecc-4008-8fd8-888535241fc5) + (at 90.12 122.582 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Polarized capacitor") + (property "ki_keywords" "cap capacitor") + (path "/3ebfdd3a-6e6b-4560-80c5-923083d794a2") + (attr smd) + (fp_text reference "C5" (at 0 -1.68 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e92bda6e-7a25-4488-9e40-1a36e75be2c4) + ) + (fp_text value "1uF" (at 0 1.68 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ddf35be0-d56e-4e10-a760-430eba74f105) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp e738aa5b-aec9-496c-9de5-584577b5a4a9) + ) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 649872aa-fccd-4574-a974-3cf6b10bc1d7)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04d355cd-aef3-4f32-9ae9-534aaf13e1af)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 763d7910-88a5-4e1b-aa6d-ae59f3512d1e)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2388f299-440a-4609-a4a7-f651b3762c03)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e152ddcb-6510-40e5-93e3-42e3a119c768)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ea0f8c6-10b4-4119-91a1-0b34de27113e)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8bab8783-e806-4218-a2fc-7a44838b00e3)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9908de1-cbed-4cbc-8d99-6ff8a076ec25)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e08b3978-f21d-4a0f-9449-3b2ffa6dafeb)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b23aa45b-e132-46d3-807a-898a84ad2d05)) + (pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 4 "Net-(C2-Pad2)") (pintype "passive") (tstamp d8464a3e-9f35-45d0-ac38-a361a0831a54)) + (pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 9 "L in") (pintype "passive") (tstamp 612bcc64-b3d5-444e-a13d-4a48ebd623d5)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 322671bd-1a91-41e0-9d5f-8b0ae2dd39bc) + (at 81.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp e5211597-c73e-4253-816f-db156b453621) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 69fdd7a7-44ad-40b8-93bd-e360609fbc76) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 370e72e1-35a3-4843-9828-86de81371f4d)) + ) + + (footprint "Button_Switch_SMD:SW_Push_1P1T_NO_6x6mm_H9.5mm" (layer "F.Cu") + (tstamp 3a25fceb-8de3-4201-bb0d-4f0b229f468a) + (at 91.44 98.806 90) + (descr "tactile push button, 6x6mm e.g. PTS645xx series, height=9.5mm") + (tags "tact sw push 6mm smd") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Single Pole Single Throw (SPST) switch") + (property "ki_keywords" "switch lever") + (path "/56d80d70-3251-44b3-b033-0f6831ebeacf") + (attr smd) + (fp_text reference "SW2" (at 0 -4.05 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4b7bb17f-2ff3-410d-a91c-ed4d477c0090) + ) + (fp_text value "RST" (at 0 4.15 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9863dbc6-9563-46e1-a524-83556c84ff4b) + ) + (fp_text user "${REFERENCE}" (at 0 -4.05 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e7fb2fe0-afdf-45eb-9eac-abc6c6b97b02) + ) + (fp_line (start -3.23 -3.23) (end 3.23 -3.23) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c8bb1f6-943f-4bf6-9b77-4eadf3b94d28)) + (fp_line (start -3.23 -3.2) (end -3.23 -3.23) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d49eee65-b0b7-480d-ac64-434d96b6891f)) + (fp_line (start -3.23 -1.3) (end -3.23 1.3) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5fee94d0-2ed9-4f56-be67-19331fc13c40)) + (fp_line (start -3.23 3.23) (end -3.23 3.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 889720b0-46a6-4a43-8555-a16ead35d139)) + (fp_line (start -3.23 3.23) (end 3.23 3.23) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66a73869-bc00-4749-8804-b9d8c3723b37)) + (fp_line (start 3.23 -3.23) (end 3.23 -3.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22d775d6-5cb6-4219-969e-a88d00ecc32a)) + (fp_line (start 3.23 -1.3) (end 3.23 1.3) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4844c62-99be-4efb-9a25-087c5f7e5745)) + (fp_line (start 3.23 3.23) (end 3.23 3.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b03357a-0c7c-47d3-aeaa-34fb6f4ffe29)) + (fp_line (start -5 -3.25) (end -5 3.25) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa53ab71-ca6a-48eb-acac-4a05cf016693)) + (fp_line (start -5 -3.25) (end 5 -3.25) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d77c7038-8e30-497e-a44d-f6da7b1153a3)) + (fp_line (start -5 3.25) (end 5 3.25) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce9c6a1e-5306-432a-bb32-5e08bd87a561)) + (fp_line (start 5 3.25) (end 5 -3.25) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a14fd2de-299b-45e9-9a6d-fb13a13eb3de)) + (fp_line (start -3 -3) (end -3 3) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8283f3fe-687e-4706-b371-04c67f046b1c)) + (fp_line (start -3 3) (end 3 3) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb8add5f-acc0-4e48-abdb-236f10163216)) + (fp_line (start 3 -3) (end -3 -3) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp efc20612-73b3-4311-8f27-055b9e86a06e)) + (fp_line (start 3 3) (end 3 -3) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 359463d2-baf8-4cdc-b4b0-cf83a7c9e49c)) + (fp_circle (center 0 0) (end 1.75 -0.05) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp a55f4675-d203-4e00-bfae-67fb558a72a1)) + (pad "1" smd rect (at -3.975 -2.25 90) (size 1.55 1.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 18 "RST") (pinfunction "A") (pintype "passive") (tstamp 43875870-ceb3-4248-aa86-6d1d841dc5e1)) + (pad "1" smd rect (at 3.975 -2.25 90) (size 1.55 1.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 18 "RST") (pinfunction "A") (pintype "passive") (tstamp d48b118d-a0d7-4541-b5e8-5ef0eb9bb51b)) + (pad "2" smd rect (at -3.975 2.25 90) (size 1.55 1.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GNDD") (pinfunction "B") (pintype "passive") (tstamp 963f22be-ff6f-4aa5-8c2f-a68e0efabc18)) + (pad "2" smd rect (at 3.975 2.25 90) (size 1.55 1.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GNDD") (pinfunction "B") (pintype "passive") (tstamp 0eb7fb43-8abe-4176-994d-0720f68ca3fa)) + (model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_PUSH_6mm_H9.5mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp 3e150969-8c64-44aa-a462-7ea60b27beca) + (at 82.959 67.7765 90) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/ababd2b2-8d59-4cba-87cc-ef84f8e2cc1d") + (attr smd) + (fp_text reference "R11" (at 0 -1.65 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8ee4fbac-2e06-4d8c-b172-b9ebf45b3645) + ) + (fp_text value "320" (at 0 1.65 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f7b15877-07bf-48bf-86ef-4eaa7bab0800) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 983f8d9c-92cb-4b28-868f-031d79d24758) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 468862a4-72ca-46c4-80f7-de4a3697faf5)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d568d513-62d5-4419-ae3c-5d4eefbe5e60)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79299ee4-30b8-4ad8-a285-0f038fadb48c)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c614bb5-596c-4327-8b7c-2dffff34fe91)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf8b58ec-c7ed-4743-b84b-1d045b2a3d0d)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4f8ae41-ca57-49a2-ba3b-addd11678556)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c1c2470-c993-4e74-9b79-2a855e19ba4d)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a13c270-b6db-47f3-b36c-70a7851d0a18)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b47dd984-89c9-4c2f-868d-61928f474028)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83c66f49-c7b7-4b3d-89d3-69188b36d17c)) + (pad "1" smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 17 "SCK") (pintype "passive") (tstamp 9f4cdce8-8ad7-4276-9705-4d18fe81cbfb)) + (pad "2" smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 13 "Net-(D2-Pad1)") (pintype "passive") (tstamp e6414057-1686-4069-afd9-eba035e71b7b)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Diode_SMD:D_0805_2012Metric" (layer "F.Cu") + (tstamp 4dcb7654-16ba-45f7-958e-0d2824310260) + (at 80.8 67.8 -90) + (descr "Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "diode") + (property "Category" "Optoelectronics") + (property "DK_Datasheet_Link" "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (property "DK_Detail_Page" "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955") + (property "Description" "EMITTER IR 950NM 100MA RADIAL") + (property "Digi-Key_PN" "475-2919-ND") + (property "Family" "Infrared, UV, Visible Emitters") + (property "MPN" "SFH 4545") + (property "Manufacturer" "OSRAM Opto Semiconductors Inc.") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "Status" "Active") + (property "ki_description" "EMITTER IR 950NM 100MA RADIAL") + (property "ki_keywords" "475-2919-ND") + (path "/a9c50111-91b0-43a5-afe6-cf5d2d004cd8") + (attr smd) + (fp_text reference "D2" (at 0 -1.65 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e56f7230-c648-4be7-aa0e-683ab5b87c87) + ) + (fp_text value "LED" (at 0 1.65 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 86d9db0e-5fb3-498b-97c1-130c33dbe38a) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp ce61dc63-c922-4555-8ba1-77a623b771e5) + ) + (fp_line (start -1.685 -0.96) (end -1.685 0.96) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04503047-0872-460e-a712-91ff4ce76576)) + (fp_line (start -1.685 0.96) (end 1 0.96) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7358d48-5eba-4a7d-881c-65f1bdf95a9f)) + (fp_line (start 1 -0.96) (end -1.685 -0.96) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9853b543-2128-48fc-af52-380bef1a3bc0)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e46f34f2-d999-4d9f-8384-9bc6b82db839)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d72bc88e-5bee-4cfd-8954-5312d641ef37)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 829c8487-c04d-42cf-af8a-ef4d8ae1fe65)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a2257bc-f27e-4bc1-aa6a-a753a94ad21c)) + (fp_line (start -1 -0.3) (end -1 0.6) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af9b2346-e08a-40c7-963d-4680b14e1585)) + (fp_line (start -1 0.6) (end 1 0.6) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb00ee19-aafa-42fa-8bf4-17718e8bbdb4)) + (fp_line (start -0.7 -0.6) (end -1 -0.3) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0c98140-2167-4edb-8bb6-ad5bdb9c3c0c)) + (fp_line (start 1 -0.6) (end -0.7 -0.6) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c31fbec-bac2-4fde-9efd-92a1615bc31c)) + (fp_line (start 1 0.6) (end 1 -0.6) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a8ee329-4ae8-4ec7-b592-a667c638fb81)) + (pad "1" smd roundrect (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 13 "Net-(D2-Pad1)") (pintype "passive") (tstamp 5ac2aee5-0d54-43e8-ab91-83a60065581b)) + (pad "2" smd roundrect (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GNDD") (pintype "passive") (tstamp 4b3b6ee2-d12e-4591-b4b2-74329b7e03ce)) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:CONTACT_2" (layer "F.Cu") + (tstamp 5429fdd8-1e36-469c-beca-a8f13556f0a4) + (at 78.486 82.312 90) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Buzzer, polarized") + (property "ki_keywords" "quartz resonator ceramic") + (path "/3fb5f7a9-438b-4d2f-904b-d2b9ad8527c5") + (attr through_hole) + (fp_text reference "BZ1" (at 0 2.5 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fd9faa4f-0511-4291-b01b-99d4ba5b8fbf) + ) + (fp_text value "Buzzer" (at 0 -2.3 90) (layer "F.Fab") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 639c7ccd-4b9c-43dc-af74-98b584dc773c) + ) + (pad "1" smd rect (at -1 0 90) (size 1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "Net-(BZ1--)") (pinfunction "-") (pintype "passive") (tstamp 811b4654-6a93-4fe2-953c-fbd912f7b1ee)) + (pad "2" smd rect (at 1 0 90) (size 1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GNDD") (pinfunction "+") (pintype "passive") (tstamp cba753dc-0344-4903-93ce-1f564f176ff3)) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 544d299e-ede6-4da0-ae82-df4d42e02960) + (at 89.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp dceb4e74-752f-4c9b-a817-7471d13ee43b) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 9812f963-4900-4add-8014-b821d5ca1c1c) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 2c198f0c-6246-4659-bf76-660c7516efcc)) + ) + + (footprint "MY:VSON4" (layer "F.Cu") + (tstamp 57c426fd-ef4b-435f-ae9e-252e0d28b595) + (at 85.45 113.6 -90) + (property "Category" "Relays") + (property "DK_Datasheet_Link" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2") + (property "DK_Detail_Page" "/product-detail/en/toshiba-semiconductor-and-storage/TLP222AF/TLP222AF-ND/871243") + (property "Description" "SSR RELAY SPST-NO 500MA 0-60V") + (property "Digi-Key_PN" "TLP222AF-ND") + (property "Family" "Solid State Relays") + (property "MPN" "TLP222AF") + (property "Manufacturer" "Toshiba Semiconductor and Storage") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "Status" "Active") + (property "ki_description" "SSR RELAY SPST-NO 500MA 0-60V") + (property "ki_keywords" "TLP222AF-ND TLP222A") + (path "/cce7e5ec-215a-4b2c-a643-cfe80790dac1") + (attr smd) + (fp_text reference "RLY2" (at 0.127 -7.747 -90 unlocked) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5ff04cd6-eb5c-4043-a0af-d0d563e06f3f) + ) + (fp_text value "TLP222AF" (at -0.0508 8.3058 -90 unlocked) (layer "F.Fab") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 30dee8c9-52fc-48ad-a694-a3c545c6e3db) + ) + (fp_text user "${REFERENCE}" (at -0.0508 10.2108 -90 unlocked) (layer "F.Fab") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 580ae8e4-669e-485a-ae71-b9e32ccf320f) + ) + (fp_line (start 0.17 -1.47) (end 0.82 -1.47) + (stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 72c1b21b-d76c-42f4-956a-985881ef1d85)) + (fp_line (start 0.82 -1.47) (end 0.82 -0.31) + (stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 33e9a548-1c5b-4f48-a0cc-2a83de8d82a9)) + (pad "1" smd rect (at 0.4 -0.8 270) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 81 "Net-(J17-Pin_1)") (pinfunction "A") (pintype "passive") (tstamp 255696c2-ea82-4f62-91c9-d900e1f9d112)) + (pad "2" smd rect (at -0.4 -0.8 270) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GNDD") (pinfunction "K") (pintype "passive") (tstamp 71ed83dc-1732-49c0-8312-c98599715513)) + (pad "3" smd rect (at -0.4 0.9 270) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 15 "Net-(J14-Pin_1)") (pinfunction "DRAIN") (pintype "passive") (tstamp f15e0010-c343-430e-979f-d60f0ba285c7)) + (pad "4" smd rect (at 0.4 0.9 270) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 83 "Net-(U3-+Vout)") (pinfunction "DRAIN") (pintype "passive") (tstamp 6ea8b2ad-ccf9-4dd5-80c0-71cbabb709c2)) + ) + + (footprint "MY:Jack_3.5mm_Green_exUSBSND" (layer "F.Cu") + (tstamp 5a7d8959-ea5a-43d9-9ef5-b6b08b8633b0) + (at 83.82 124.206 90) + (descr "Korean Hroparts Elec PJ-320D-4A (https://datasheet.lcsc.com/lcsc/1810121716_Korean-Hroparts-Elec-PJ-320D-4A_C95562.pdf)") + (tags "smt female jack horizontal") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Audio Jack, 3 Poles (Stereo / TRS), Grounded Sleeve") + (property "ki_keywords" "audio jack receptacle stereo headphones phones TRS connector") + (path "/28931350-2b03-4395-9c43-b02d0cc1cac3") + (attr smd) + (fp_text reference "J11" (at 0 -6 90 unlocked) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 242a5d45-cb95-4713-bdab-747ca4f28b20) + ) + (fp_text value "Audio Video" (at 0 6 90 unlocked) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a2a95644-34ae-41a2-82a1-9074b9d1dbbc) + ) + (fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp adac9747-d409-423d-9b37-9f9e965a6b25) + ) + (fp_line (start -8.47 -2.62) (end -5.334 -2.62) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96a22785-1917-4bb9-88b2-90c4b0551bcb)) + (fp_line (start -8.47 2.62) (end -8.47 -2.62) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc75c338-1a5f-485a-9cd5-e6745c0e45ca)) + (fp_line (start -5.334 -2.62) (end -5.334 -3.17) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 896caf5c-a464-4bac-8410-aaa1dce59017)) + (fp_line (start -5.334 2.62) (end -8.47 2.62) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2bed9b2e-1d1e-4d19-9616-63934bb10712)) + (fp_line (start -5.334 3.17) (end -5.334 2.62) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4637a8c7-ef2c-4ac1-a3a1-f798e9da1b65)) + (fp_line (start -3.81 -3.17) (end -2.2 -3.17) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c4c2e2c-d5a9-4308-8628-d6aab8badbec)) + (fp_line (start -0.7 -3.17) (end 5.87 -3.17) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b875b764-d0b2-4b42-bcaf-debfdbd73271)) + (fp_line (start 3.302 3.17) (end -5.334 3.17) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c8a024cb-9f7e-4b9a-ab3e-003a159974cb)) + (fp_line (start 3.302 4.5) (end 3.302 3.17) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a904ca2-c740-4d49-85c8-b646625ed110)) + (fp_line (start 5.87 -3.17) (end 5.87 3.175) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6388886-b20b-44f7-8bf6-f2d480fb1756)) + (fp_line (start 5.87 3.175) (end 4.826 3.175) + (stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 080a4c0e-139c-4da0-98f8-5b62b353f87f)) + (fp_line (start -8.85 -5) (end -8.85 5) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e41ec33-330d-41b7-9e31-4d297144b119)) + (fp_line (start -8.85 5) (end 6.25 5) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 211054a0-9c6d-4950-aa09-110246763ec7)) + (fp_line (start 6.25 -5) (end -8.85 -5) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f429bff-fb3d-44d7-b999-e96996f9a794)) + (fp_line (start 6.25 5) (end 6.25 -5) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ad6ce5d-7b93-43bd-a508-a9d432841f23)) + (fp_line (start -8.35 -2.5) (end -5.588 -2.5) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0faf3fe-cd5a-4a26-914e-014f902ad361)) + (fp_line (start -8.35 2.5) (end -8.35 -2.5) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 70a52cfe-ea46-4c60-b9f8-c00fa95ec44d)) + (fp_line (start -5.334 2.5) (end -8.35 2.5) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c992b74a-55ba-4c5f-914f-32553a244434)) + (fp_line (start -5.334 2.5) (end -5.334 -2.54) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 329e1781-07e7-4664-8af9-b6e7099b49d5)) + (fp_line (start -3.81 -3.05) (end 5.75 -3.05) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0cf8b9f6-cf3e-4714-8ced-a17b951dcb7a)) + (fp_line (start -3.81 3.048) (end -5.334 3.048) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f8e4c1f-0b5d-420e-8da5-5e9a5fda76f1)) + (fp_line (start 3.302 3.049675) (end -2.286 3.048) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37ac376a-5f9b-4f12-95a4-d1af3dcd1568)) + (fp_line (start 5.75 -3.05) (end 5.75 3.05) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e9bdcf7-6d7e-42da-8624-08f73837df13)) + (fp_line (start 5.75 3.05) (end 4.826 3.048) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8edca505-ed4f-402f-9ebd-0b3ecc6cac67)) + (pad "" np_thru_hole circle (at -3.429 0 90) (size 1.6 1.6) (drill 1.6) (layers "F&B.Cu" "*.Mask") (tstamp 8ef33708-1044-4f84-baf5-ebb2d52089bc)) + (pad "" np_thru_hole circle (at 2.25 0 90) (size 1.6 1.6) (drill 1.6) (layers "F&B.Cu" "*.Mask") (tstamp 26962769-b2c2-41b6-9be7-eabb0dfbf416)) + (pad "G" smd rect (at -4.572 -3.15 90) (size 1.2 2.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GNDD") (pintype "passive") (tstamp 9c26b08e-1282-4ef9-8886-36b63cc14be6)) + (pad "R" smd rect (at -1.45 -3.15 90) (size 1.2 2.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 8 "R in") (pintype "passive") (tstamp 80b783c7-f27e-4b85-bf14-2eba46363110)) + (pad "S" smd rect (at -3.048 3.302 90) (size 1.2 2.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 78 "Net-(J10-Pin_2)") (pintype "passive") (tstamp 3e75ca2c-850f-43f0-8400-6f557da50b4f)) + (pad "T" smd rect (at 4.064 3.302 90) (size 1.2 2.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "L in") (pintype "passive") (tstamp d4cb7323-5e7c-4b39-969b-ded0a700ec89)) + (model "${KICAD6_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_KoreanHropartsElec_PJ-320D-4A_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp 6755193b-ee6e-4327-b07a-f8dcac3f9524) + (at 95.2 126.5 90) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/aba20a81-71cf-4a37-a7ee-c962683b0e90") + (attr smd) + (fp_text reference "R2" (at 0 -1.65 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 69130cef-86d1-4b6c-929f-bf18b21e91ff) + ) + (fp_text value "270" (at 0 1.65 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b4c5cee8-3682-4fdc-b4e7-2a83ec1c7f01) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 2a388821-479c-4a93-9b1e-19826ce951ce) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2530b8f1-f378-47fa-9b98-010efb93fa15)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 956ed609-3c62-429c-a0ac-6af69300d793)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b534021-dbc0-4abe-b9fd-79adac32eb00)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9a56489-6ffc-43ac-b04d-c13963bc0244)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2d957ba-6287-49c2-80ab-815d0880fa4b)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27c4881f-788a-485f-bf59-9160a6583a00)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67eb4865-385d-4748-9a4a-fb3e0b0d02ab)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d3aee6c-f190-472c-a0b0-9fd77aeabfa4)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d30a1a63-3e98-4e31-aa03-aad37be79805)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2db6d93c-cf81-4aa9-8018-2a4708700ac4)) + (pad "1" smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 4 "Net-(C2-Pad2)") (pintype "passive") (tstamp 2c9846bb-48e0-4f08-8c79-248522c9ecb8)) + (pad "2" smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 54 "Net-(J5-Pin_32)") (pintype "passive") (tstamp 2d3b44b4-b87f-4e94-9b5f-9504acd3f0f9)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 68b0abe2-60cd-4d7e-ad8a-3ffc8efadbcb) + (at 83.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 6e781199-472a-4308-aa3b-98468a19ce4b) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 16a6623f-9b97-4ef6-8be2-0b4d31d9ecee) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp d03a2210-dd52-4cce-9983-ab602da3054d)) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp 6e158f1e-48de-4f0a-95a6-afad598529dc) + (at 82.3 80) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/36a1b2c2-5d6b-4516-9a38-56084d1f43ab") + (attr smd) + (fp_text reference "R10" (at 0 -1.65) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4a3926de-8def-4cfd-b227-885be0fc656c) + ) + (fp_text value "10K" (at 0 1.65) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 040f3128-41fb-4e29-b376-8ad7d8fd2bec) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp a8fd5db7-1bb1-4a3a-89c1-817ba0d7efd9) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85b8b358-2c1a-4978-8c3d-59e97f9f7227)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f529b668-82cc-49a8-9be3-9101109a8954)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbbdee94-de9f-4235-9df6-2f2e417e3953)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 011bf0b7-eb4a-4f83-8378-49a9a912cc84)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba37140d-a957-42ad-9947-ddb2fae8ed4c)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3424b653-7b53-4e64-80da-942d237e9a4d)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 898913bf-57ad-4cb2-af16-232b4792393f)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2a8ea29e-283d-4868-b857-ac221d615069)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aaa83e9a-1cac-411d-a7ed-781de8007fd0)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb5ef612-0948-4f65-9e93-e19ef24b6473)) + (pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 5 "+3.3V") (pintype "passive") (tstamp 37bb2b34-84a1-40f4-aecf-e3aecd745345)) + (pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 18 "RST") (pintype "passive") (tstamp 18719ec6-ea62-4b3c-9ad3-8297f705f7d1)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tstamp 6e1ed6a0-5a2e-4aa7-bfc5-dae05b16b71f) + (at 90.9 67.7 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Polarized capacitor") + (property "ki_keywords" "cap capacitor") + (path "/7c751ae5-72e4-4259-bfda-2ed0746868fa") + (attr smd) + (fp_text reference "C3" (at 0 -1.68 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c02139f7-329f-401d-a5f1-36434fc6c593) + ) + (fp_text value "100uF" (at 0 1.68 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 419e2c40-0049-46ea-a522-b2d55f9872c0) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 847b9736-f063-4697-8631-f248a39382a0) + ) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ecb32fac-e5c5-41fe-a398-add3dae293ca)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a69efdd8-e9e6-49f9-acce-b92dcd197fd2)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c77eec20-e6e9-4e2e-a4cb-0f93cfb2d533)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 257f1569-07a3-4eaa-900e-ca8b482cdc28)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f6ebdde-c334-46b1-84d3-8e2d4aff8999)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9c32d6f-9e98-48e6-bca2-6e4c582a8a4b)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41015937-6555-4ec5-992d-6c6f8b498a88)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ec15b42-7d83-4f06-96c3-a5c096bdf9bf)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6abcd3d-35d6-40aa-a981-08027fe71f58)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab98dbd8-fd53-4411-b63c-972b55d2e8cd)) + (pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 5 "+3.3V") (pintype "passive") (tstamp 56f3d08f-491f-4f3a-8386-e7e7721d7fe9)) + (pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GNDD") (pintype "passive") (tstamp 6fb1c46d-0dd0-4fd8-9752-fb3a1a0d317c)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:VSON4" (layer "F.Cu") + (tstamp 76373231-567c-4323-a011-6ae4609f1996) + (at 86.37 118.2 90) + (property "Category" "Relays") + (property "DK_Datasheet_Link" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2") + (property "DK_Detail_Page" "/product-detail/en/toshiba-semiconductor-and-storage/TLP222AF/TLP222AF-ND/871243") + (property "Description" "SSR RELAY SPST-NO 500MA 0-60V") + (property "Digi-Key_PN" "TLP222AF-ND") + (property "Family" "Solid State Relays") + (property "MPN" "TLP222AF") + (property "Manufacturer" "Toshiba Semiconductor and Storage") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "Status" "Active") + (property "ki_description" "SSR RELAY SPST-NO 500MA 0-60V") + (property "ki_keywords" "TLP222AF-ND TLP222A") + (path "/087145e8-4d44-4643-b918-e128740d1c2c") + (attr smd) + (fp_text reference "RLY3" (at 0.127 -7.747 90 unlocked) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 31f34808-9c17-4578-b7fd-6074c149b419) + ) + (fp_text value "TLP222AF" (at -0.0508 8.3058 90 unlocked) (layer "F.Fab") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5bb449a2-b234-4f86-a56c-d9432c0818aa) + ) + (fp_text user "${REFERENCE}" (at -0.0508 10.2108 90 unlocked) (layer "F.Fab") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c3597e30-31bb-41e4-8a52-305bc2038d20) + ) + (fp_line (start 0.17 -1.47) (end 0.82 -1.47) + (stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 668d44da-8e7e-4219-b543-08330b5026e5)) + (fp_line (start 0.82 -1.47) (end 0.82 -0.31) + (stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 65e399a2-de32-41c5-9700-e693815a7256)) + (pad "1" smd rect (at 0.4 -0.8 90) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 82 "Net-(J18-Pin_1)") (pinfunction "A") (pintype "passive") (tstamp f2819b60-ead8-4a3e-978d-fa456b46c113)) + (pad "2" smd rect (at -0.4 -0.8 90) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GNDD") (pinfunction "K") (pintype "passive") (tstamp 1508e8df-de62-4eb0-9bca-aed7c43a1bb9)) + (pad "3" smd rect (at -0.4 0.9 90) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 58 "Net-(J13-Pin_1)") (pinfunction "DRAIN") (pintype "passive") (tstamp 0649b2f0-5755-4bca-bbed-089d3af410a6)) + (pad "4" smd rect (at 0.4 0.9 90) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 83 "Net-(U3-+Vout)") (pinfunction "DRAIN") (pintype "passive") (tstamp 8374c789-d000-43b8-a644-69eae4435352)) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 7741c009-3901-4bba-9d2b-5b698671daec) + (at 80.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp b823d723-0c8b-4a74-b917-dc962901db1d) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 64b356cc-fdaf-482b-afdd-b967d6d353b8) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 9a1b8c8d-d654-495a-9ff3-487d953d41c4)) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tstamp 78249b6d-1b54-4430-a6c3-1cea41c4546f) + (at 75.1 121.2 -90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Unpolarized capacitor") + (property "ki_keywords" "cap capacitor") + (path "/87660bc1-4db2-4ad5-86e1-a67d9dca26bd") + (attr smd) + (fp_text reference "C1" (at 0 -1.68 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6c366277-6890-4636-89b7-7974ac2c636b) + ) + (fp_text value "33nF" (at 0 1.68 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ec4dd23b-af2d-4fe3-a601-e723dba20362) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 764c44c2-7e7c-473e-b43e-bda179e76ebe) + ) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe373332-eb55-472d-b519-58426914e4dd)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a770b0f8-57ee-4e8c-9d07-d1af13877868)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54b3a160-88d3-4614-9d59-55462ebaa8d1)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce34a254-6b58-4ee5-9347-26cf42356931)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5da5c6da-cd18-486a-affb-2632559788ed)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 783b31c4-fa77-472a-a457-db8ea7c80f15)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0719630a-08d6-4c91-82ba-59b1c19cf896)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1dad2e36-bcc5-4a9f-843d-ae549c536a34)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d556e96-aad0-4b86-b455-ae115a9456c2)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50dc10f8-e8c9-4b40-9b54-5002681dc81c)) + (pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "Net-(C1-Pad1)") (pintype "passive") (tstamp 41ddf5c9-c033-421a-a70e-c73ee889e63f)) + (pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GNDD") (pintype "passive") (tstamp 5e447fbc-5f53-4d3e-82dd-46465f970be4)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 78258f10-3c87-47d5-bdf7-205fc604d376) + (at 86.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp b9f29dcd-17bb-46b2-8348-2ce6b0f56b0c) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 6a502d51-187e-48db-825e-94b398b067ec) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 24e43e9c-9869-48be-9a76-0a66ff6ce43e)) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp 7a01bd3f-dcf4-48c5-919b-63c14a1dcb02) + (at 94.6875 81.8 180) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/a976f507-ec3f-412c-962e-440a225d06b4") + (attr smd) + (fp_text reference "R15" (at 0 -1.65) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a766af3d-a790-4963-964b-2410d7e41c59) + ) + (fp_text value "56" (at 0 1.65) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1c2a0af7-4a0b-4d5e-a7cc-bd21055fa234) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 37b0add3-5cc3-422f-9278-33fca4b58bbe) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61711399-1069-478a-8ce9-15cf1f85e5f1)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82e8ff96-c7ba-4654-a4af-050f6fb70a35)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1b77218-0edc-432f-9bd8-69029f8fbd27)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1830191b-efd7-4867-af04-3e6267816299)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3f48e12-1962-4b91-b5e8-1ebe3150675b)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d96c8f79-f47a-41c0-9c5f-458c040e77f5)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f20199d4-397e-4f54-8039-5fa13c480b31)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1205c6b9-7878-4d3c-afb2-72a8d22ab7d6)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7dc690b-0933-4ba0-8d49-92d975ee744b)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 220a9d0a-b6ed-4520-8071-ebf7d54c8b77)) + (pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 38 "Net-(J5-Pin_10)") (pintype "passive") (tstamp 4e3a0ed5-77c2-4051-bbac-38a8e7b33b97)) + (pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 80 "Net-(U2-PA7)") (pintype "passive") (tstamp 33b157ba-fd50-4224-93e9-8d4c4a4a7368)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp 7bd60bc4-fa86-4538-93e9-591333e27699) + (at 75.7 82.3875 90) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/dc6fcc58-1947-4005-a7a6-641f0ee571f1") + (attr smd) + (fp_text reference "R9" (at 0 -1.65 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2cfa2038-461f-4de8-b360-2940fdc95444) + ) + (fp_text value "320" (at 0 1.65 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6fc248d5-eead-4e4c-9e09-33cbc57c9ad0) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 80448dd9-0e8b-44aa-9d9d-486cbdaf0b0e) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c9a2f8f-27ca-4bea-ae40-8e5c8886df64)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cae38c35-1132-4323-be27-97e33ee01a4e)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f1f2fa4e-20fa-4421-b051-2b58e8f3909d)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0276995-9c62-4f49-a751-936cc1fa110d)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 995595eb-c6d8-4ce8-9d0c-ea6d2ee2a0c3)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b2126ea-12d5-4de9-88b7-a0e74ecded7c)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e61b6c70-eece-44e7-b4ed-7d222079bbc0)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2534a846-24a3-4f09-8e4b-03908360cb8e)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce9023f4-41e0-423f-883c-a5cce735f02d)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02757eb1-7855-45e8-90e6-18f44242e120)) + (pad "1" smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 1 "Net-(BZ1--)") (pintype "passive") (tstamp 11e5fc2e-a964-48e5-a868-9e912edaa180)) + (pad "2" smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 16 "MISO") (pintype "passive") (tstamp 8b4f8fa6-6d42-4b58-9fb7-b0de41be569e)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp 7dfba862-d5d7-4752-af87-61cf6ecf1528) + (at 76.5575 86.106) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/7af9a0a0-8812-4648-a488-588369b28382") + (attr smd) + (fp_text reference "R5" (at 0 -1.65) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bd8cdf40-719e-46fa-b578-b6d26c559b72) + ) + (fp_text value "51" (at 0 1.65) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f87dc1c6-e0e3-4022-86a0-f62bb37bac01) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp a265ba32-5aaa-4919-92f6-2e33666c2ad0) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2bb7fa9-3b35-4c24-b6f8-e3fac2093ecc)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0d5b5e0-19a7-47a6-b315-46258307ea4f)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89524768-b7a9-4662-96ee-86995b3a2062)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2fd4f96b-181a-40ae-a3bf-09e9342b7108)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e732c2f2-e992-4a75-89e8-12d77fac4756)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2ff3565-7a94-45e7-b57c-eea95de07d96)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 42b71e8f-0fd0-4a95-a40e-a50d87d40cfa)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e3714612-399c-445b-a10c-246901efd84a)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 838b7072-d947-4a9f-a0c3-5e98c96be3b2)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 880757f4-7d2b-4ef3-bba0-f8b584d70aed)) + (pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 7 "Net-(D1-Pad2)") (pintype "passive") (tstamp 08e04d0d-b32d-4eac-8cfd-eebc3ab8bfa4)) + (pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 6 "Net-(Q1-D)") (pintype "passive") (tstamp 71617d6e-d3e9-454d-9b54-e2faa4564f0a)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 7ec8cd6f-3b64-4f0f-aece-6afad80aeb77) + (at 96.9 104.59) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp c2391448-eea3-416d-aabd-a0379160ecc6) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp be4512b0-5ce1-46e4-99cd-e3b4f2ddcca9) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp ff966062-10af-42a3-8dfc-9297f3acd779)) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tstamp 87dfb7e4-eae2-4c79-a090-d936d2bf3504) + (at 79.1 121.224 -90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Polarized capacitor") + (property "ki_keywords" "cap capacitor") + (path "/952734a7-39d2-494f-aea5-2d4e4046f049") + (attr smd) + (fp_text reference "C4" (at 0 -1.68 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e138d691-254a-4746-927c-182030ea0ae6) + ) + (fp_text value "1uF" (at 0 1.68 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bc25a313-6063-458f-a7f8-11968dea2915) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 9fc7dd19-90a6-4c5f-8dcf-3379912178a7) + ) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b81ba3df-2edc-4261-a37e-9456ab40a48e)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fc655d3-6c5b-4a4b-be71-02ad4c4cba19)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca3cc8fc-bbdb-4904-a8f3-4eaf8ad36854)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5317575-b363-41f4-9cb2-e5419982e1db)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd3d9f4c-6b21-43a5-a4d7-012d11ffd729)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea464dd6-bfbc-49ad-bc98-b4683121d2e9)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f52f169-0693-49bf-83b7-68fc28319297)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f95c95f-19bb-43de-9966-cd2ffb458bc8)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bafcf8b9-4fea-4325-a16b-8e2db074d924)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 869913c6-25ab-4102-9f16-5b5db1688439)) + (pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "Net-(C1-Pad1)") (pintype "passive") (tstamp f470fbf3-3620-48c7-b333-d692db424c9c)) + (pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 8 "R in") (pintype "passive") (tstamp 8e328fdf-d310-4845-9101-7a202539e417)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Converter_DCDC:Converter_DCDC_TRACO_TME_03xxS_05xxS_12xxS_Single_THT" (layer "F.Cu") + (tstamp 8b1e287c-dad9-4a45-a07b-f56982ce1ca6) + (at 91.7 107.442) + (descr "DCDC-Converter, TRACO, TME-03xxS, TME-05xxS, TME-12xxS, 1W, Rev. September 26. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tme.pdf)") + (tags "DCDC-Converter TRACO TME THT SIP-7 1W") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "1W DC/DC converter unregulated, 4.5-5.5V input, 5V output voltage, 200mA output, 1kVDC isolation, SIP-4") + (property "ki_keywords" "Traco isolated isolation dc-dc converter not-regulated non-regulated single 1W") + (path "/15daa4cb-b8da-4c93-b870-a36855791a9b") + (attr through_hole) + (fp_text reference "U3" (at 0.825 -3.1) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1c0539db-8c6b-4c14-a777-e9c8f93aedde) + ) + (fp_text value "TME-0505S" (at 1.375 10.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f5af1adb-bea7-4dc5-a30d-afe262b3daf8) + ) + (fp_text user "${REFERENCE}" (at 1.375 3.85) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c0d175d0-d96d-47c1-bf59-ab803e0bde64) + ) + (fp_line (start -2.175 -2.4) (end -0.141667 -2.4) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 482d4dfe-ab64-4d91-ad84-51f6aa2104d9)) + (fp_line (start -2.175 -0.366667) (end -2.175 -2.4) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 39d85f6b-07ae-49c2-b3c1-6f65a358a451)) + (fp_line (start -1.795 -2.02) (end -1.795 9.72) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f970995-77bc-4538-83c3-8bb80a1a55fb)) + (fp_line (start -1.795 -2.02) (end 4.545 -2.02) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e825e37-1622-4b23-aafd-9a388807ef28)) + (fp_line (start -1.795 9.72) (end 4.545 9.72) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d672366e-691b-41c3-a04f-5b5ac412a686)) + (fp_line (start 4.545 -2.02) (end 4.545 9.72) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18ab3090-7fb8-4a98-9630-5b750d771ed8)) + (fp_line (start -1.93 -2.15) (end -1.93 9.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1130d2c5-1783-4fc9-9833-cbd5a07d3583)) + (fp_line (start -1.93 -2.15) (end 4.68 -2.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 820acd0b-f683-42b4-88a3-9ed1ca1a1792)) + (fp_line (start -1.93 9.85) (end 4.68 9.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ad8a08b-3048-4761-a4e5-201443e1d0df)) + (fp_line (start 4.68 -2.15) (end 4.68 9.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9832e57-302e-4610-8181-3aad5ec10e99)) + (fp_line (start -1.675 -0.9) (end -0.675 -1.9) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 289473ed-519d-48e6-96fe-0f258dff8630)) + (fp_line (start -1.675 9.6) (end -1.675 -0.9) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8efca18-e285-4a20-8f39-adb5b9d56145)) + (fp_line (start -0.675 -1.9) (end 4.425 -1.9) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86cd0d6d-152b-4f63-8fa0-32fe8b96b487)) + (fp_line (start 4.425 -1.9) (end 4.425 9.6) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1e1e471-453b-4c50-9d96-210173b0c523)) + (fp_line (start 4.425 9.6) (end -1.675 9.6) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0221f3d9-f0eb-452c-8dac-9f7c1987a9d0)) + (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "-Vin") (pintype "power_in") (tstamp b362c26b-bd2a-4e1c-a170-c67cba4e71ad)) + (pad "2" thru_hole circle (at 0 2.54) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask") + (net 29 "+5V") (pinfunction "+Vin") (pintype "power_in") (tstamp 71495a89-6b5f-4d2b-bb23-05956f35f0f6)) + (pad "3" thru_hole circle (at 0 5.08) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask") + (net 30 "Net-(J13-Pin_2)") (pinfunction "-Vout") (pintype "power_out") (tstamp 0a8e3f55-7f9c-496b-b89c-b25fcd4829d9)) + (pad "4" thru_hole circle (at 0 7.62) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask") + (net 83 "Net-(U3-+Vout)") (pinfunction "+Vout") (pintype "power_out") (tstamp e021a2da-41d6-47f8-93fa-2b07ee2a22bf)) + (model "${KICAD7_3DMODEL_DIR}/Converter_DCDC.3dshapes/Converter_DCDC_TRACO_TME_03xxS_05xxS_12xxS_Single_THT.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp 8b72585f-7431-4194-9b63-b2f57afa9986) + (at 82.3 82.7) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/437b3e0e-17a6-45b2-94da-8038686c73ff") + (attr smd) + (fp_text reference "R6" (at 0 -1.65) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp db11a39a-8e4a-490e-8cf2-de0e3272deef) + ) + (fp_text value "10K" (at 0 1.65) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 433c423f-22f5-428e-a9f3-32b47818f2e3) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp a5be123f-b60a-4d0b-b1e8-ab5354ea3615) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21c7ef8c-68ff-4ccb-a9a9-4d74e926539a)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff99fea3-23fb-4211-a2b1-ae0417d9fcfa)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52a8741e-12b1-4b68-804a-5c571d2386e2)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6efebed-cb90-4ab3-af42-4755cff4501e)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d268f3f-7f0f-4265-9cdd-fe5040a79c1b)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39402955-deff-43a5-8429-cc30cbbcb1e9)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf8b40c5-a657-446d-8ffe-3d09990b8d22)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1e12c48-3f18-4576-b1ef-ca69ce7d84e0)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c57191bd-c2f9-438d-b8d3-054f30a95af3)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ac112c0-3d20-46c3-97ee-b3a21492a07f)) + (pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 5 "+3.3V") (pintype "passive") (tstamp 35ebf71f-c440-4b88-a412-82b5f8638c8f)) + (pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 77 "Net-(J10-Pin_3)") (pintype "passive") (tstamp c55e41d8-1c4b-48fb-8a40-494f7240c0d3)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp 8e1efd83-95ae-4b24-9000-c4646593d462) + (at 77.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp f9606637-27f2-4473-bbe1-7e9672d83ec4) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 584cadc5-d067-4253-881a-b9901364f762) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp c5e48138-d59d-4d73-a521-99163425864a)) + ) + + (footprint "Connector_PinSocket_2.54mm:PinSocket_2x02_P2.54mm_Vertical" (layer "F.Cu") + (tstamp 9621dcaa-b334-4a04-a240-9bbac7a8c175) + (at 95.504 118.67) + (descr "Through hole straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 2x02 2.54mm double row") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/e6ce2259-2a51-49ba-89b1-1b820f333f4b") + (attr through_hole) + (fp_text reference "J10" (at -1.27 -2.77) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ea4987eb-9da0-48dd-8e4a-2a72c7c01902) + ) + (fp_text value "RPi RST + TV" (at -1.27 5.31) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 51eb783f-6a1f-4b66-975e-77ba03e1ba17) + ) + (fp_text user "${REFERENCE}" (at -1.27 1.27 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6af471d6-9bab-4a66-a27b-0839d00246a9) + ) + (fp_line (start -3.87 -1.33) (end -3.87 3.87) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0c5482e-c124-48c1-a546-e79c7823c6ac)) + (fp_line (start -3.87 -1.33) (end -1.27 -1.33) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56f34470-8e2d-441d-9fd1-6f1a732fff0c)) + (fp_line (start -3.87 3.87) (end 1.33 3.87) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26517432-f326-43fd-9d73-b3e58767c5e7)) + (fp_line (start -1.27 -1.33) (end -1.27 1.27) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9edbd5a2-d9a1-422e-82dd-1c55b52e3e1f)) + (fp_line (start -1.27 1.27) (end 1.33 1.27) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c13abfc-c254-4146-866e-d37a1abdc6a8)) + (fp_line (start 0 -1.33) (end 1.33 -1.33) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e72cb11c-0487-4d44-b4b4-bd9ff78314dd)) + (fp_line (start 1.33 -1.33) (end 1.33 0) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a6eba1a-aa4c-4818-b349-4346162b298a)) + (fp_line (start 1.33 1.27) (end 1.33 3.87) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1bb4463-73b3-479c-916e-10c49438cb35)) + (fp_line (start -4.34 -1.8) (end 1.76 -1.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4350a700-ec65-4e55-ac58-6cf597cb87c4)) + (fp_line (start -4.34 4.3) (end -4.34 -1.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40563ecf-14ba-4880-be72-eb5bd28209d3)) + (fp_line (start 1.76 -1.8) (end 1.76 4.3) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 648c88a1-e6bb-47f9-9cc5-325bbb90bf07)) + (fp_line (start 1.76 4.3) (end -4.34 4.3) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d605e58-84ea-45c9-b285-bc16ff2729ee)) + (fp_line (start -3.81 -1.27) (end 0.27 -1.27) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c489f40d-cbad-47f5-ad27-9d2537c8a48c)) + (fp_line (start -3.81 3.81) (end -3.81 -1.27) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0917428c-1fe8-49e2-8177-232c2de7694b)) + (fp_line (start 0.27 -1.27) (end 1.27 -0.27) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 481bb555-d6da-4bbe-a5c0-12c672d03b95)) + (fp_line (start 1.27 -0.27) (end 1.27 3.81) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0fe2c3c7-ace9-411e-a152-df5ced8936f6)) + (fp_line (start 1.27 3.81) (end -3.81 3.81) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f322da3d-2bac-4a3d-8674-e9291f6d86f3)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_1") (pintype "passive") (tstamp 50737444-6a7e-4ace-8a74-fbce2227a84d)) + (pad "2" thru_hole oval (at -2.54 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 78 "Net-(J10-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp f9df08df-5b03-46f3-ae4c-81c8fb6fa60f)) + (pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 77 "Net-(J10-Pin_3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 3a858935-dcbe-4138-94d7-960480aa69c5)) + (pad "4" thru_hole oval (at -2.54 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_4") (pintype "passive") (tstamp 59abd21e-9b4d-4c99-8296-e798f03e3ee8)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x02_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp a72f6738-1768-42f5-8764-bd3ef96fd988) + (at 77.1 121.2 -90) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/e258f76e-7e93-4e60-bbc6-fcb2065329a2") + (attr smd) + (fp_text reference "R3" (at 0 -1.65 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 50a0a93d-2949-46a5-9198-8f3594ddf9ff) + ) + (fp_text value "150" (at 0 1.65 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9c118736-d317-49cd-92ed-c40006b1e849) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp aca6f004-80bc-448c-854a-f4495032b698) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9250ba7c-0ecd-4e8d-b963-a530eacdc000)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4584360-cdba-425a-8510-2a66149cda8b)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aaa2b636-af24-44a6-80c9-ebd8e91e8dd8)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aade7684-633f-441c-b278-df23d8bd3fde)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d67a74c0-bff8-4016-960d-1596343b777c)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3cae4c9b-b180-4f5c-ac94-baa52d311dff)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f820c46-c62b-4cf6-a139-072abac540c1)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59b62c64-f918-41bc-b12d-cf60ffdc87bf)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78d294a8-7514-4b64-9f4a-fd50ae2f0c4a)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40c90be1-03af-4ab1-8b8c-f0558d72375e)) + (pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 3 "Net-(C1-Pad1)") (pintype "passive") (tstamp 6067a480-19ab-4e69-97a9-bb41371fd6f8)) + (pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 2 "GNDD") (pintype "passive") (tstamp 14222c0d-bceb-40bc-9a2f-e8777fb30ef3)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:VSON4" (layer "F.Cu") + (tstamp a8c0c2a1-bc7e-4ca8-945e-699f9386d951) + (at 86.46 109.19 -90) + (property "Category" "Relays") + (property "DK_Datasheet_Link" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2") + (property "DK_Detail_Page" "/product-detail/en/toshiba-semiconductor-and-storage/TLP222AF/TLP222AF-ND/871243") + (property "Description" "SSR RELAY SPST-NO 500MA 0-60V") + (property "Digi-Key_PN" "TLP222AF-ND") + (property "Family" "Solid State Relays") + (property "MPN" "TLP222AF") + (property "Manufacturer" "Toshiba Semiconductor and Storage") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "Status" "Active") + (property "ki_description" "SSR RELAY SPST-NO 500MA 0-60V") + (property "ki_keywords" "TLP222AF-ND TLP222A") + (path "/83a94042-2bf0-4d1b-a56c-2b3d56d69fcf") + (attr smd) + (fp_text reference "RLY1" (at 0.127 -7.747 -90 unlocked) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 324f893a-d5aa-4f6c-8254-88d4abbcd3a4) + ) + (fp_text value "TLP222AF" (at -0.0508 8.3058 -90 unlocked) (layer "F.Fab") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 793d995d-1500-4cb0-8589-a88e45c07814) + ) + (fp_text user "${REFERENCE}" (at -0.0508 10.2108 -90 unlocked) (layer "F.Fab") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7d2a12ba-3983-461b-a280-cfbf54eb7069) + ) + (fp_line (start 0.17 -1.47) (end 0.82 -1.47) + (stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp abb919da-c0d6-4108-86ad-706c38d3a9a0)) + (fp_line (start 0.82 -1.47) (end 0.82 -0.31) + (stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 2ad4dd3b-86cd-4a25-ab6d-936a516fa3c0)) + (pad "1" smd rect (at 0.4 -0.8 270) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 71 "Net-(J16-Pin_1)") (pinfunction "A") (pintype "passive") (tstamp 657a98d3-999c-4bb7-bab2-1d2a1a7e7442)) + (pad "2" smd rect (at -0.4 -0.8 270) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GNDD") (pinfunction "K") (pintype "passive") (tstamp bfbc7dd4-9229-4a4a-bfbb-27b72e755c6c)) + (pad "3" smd rect (at -0.4 0.9 270) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 59 "Net-(J15-Pin_1)") (pinfunction "DRAIN") (pintype "passive") (tstamp 88cb0e2e-a9ac-445e-bac7-d5674cfbe505)) + (pad "4" smd rect (at 0.4 0.9 270) (size 0.55 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 83 "Net-(U3-+Vout)") (pinfunction "DRAIN") (pintype "passive") (tstamp 1e9d4b6d-6dad-45e8-adcb-2feeba7bb6af)) + ) + + (footprint "Connector_PinSocket_1.27mm:PinSocket_1x11_P1.27mm_Vertical" (layer "F.Cu") + (tstamp b3b8f56e-e23e-48fa-b77e-0b9a61714b19) + (at 88.42 111.4 -90) + (descr "Through hole straight socket strip, 1x11, 1.27mm pitch, single row (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 1x11 1.27mm single row") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/a52f613e-e718-4b63-a487-08d167e7c650") + (attr through_hole) + (fp_text reference "J14" (at 0 -2.135 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 89144402-a9e8-401a-829f-7350419c2096) + ) + (fp_text value "BT TX" (at 0 14.835 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ec6a4b1c-b2e5-44e1-99c0-a204a8fc540f) + ) + (fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp caf9b864-f7f2-4f4f-8a87-cc8a9a7d0b6e) + ) + (fp_line (start -1.33 0.635) (end -1.33 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31784efe-bfaf-4cc5-9b63-4ba55181b985)) + (fp_line (start -1.33 0.635) (end -0.76 0.635) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d6bc458-96eb-4838-9086-79572762fcd8)) + (fp_line (start -1.33 13.395) (end -0.30753 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5e72cfe-351d-40ad-bc29-af313aeed4e8)) + (fp_line (start 0 -0.76) (end 1.33 -0.76) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c5de0fc-24d5-464d-a6de-ec9c84dcbb4f)) + (fp_line (start 0.30753 13.395) (end 1.33 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 026fafb1-f234-4c83-8838-2af5b856ad96)) + (fp_line (start 0.76 0.635) (end 1.33 0.635) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3bb0817a-d7cc-4647-a1fc-2a2ba654eada)) + (fp_line (start 1.33 -0.76) (end 1.33 0) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f3693dd-0507-406c-a0e6-ed26ec70db3e)) + (fp_line (start 1.33 0.635) (end 1.33 13.395) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4df5df8e-2650-4f68-8cce-7577754314d3)) + (fp_line (start -1.8 -1.15) (end 1.75 -1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 002374fc-c8ca-471f-9e5a-88f921d27621)) + (fp_line (start -1.8 13.85) (end -1.8 -1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c0f5492-55e9-45c0-b705-3d1a248121b4)) + (fp_line (start 1.75 -1.15) (end 1.75 13.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c01b4750-9f84-479a-8b19-63d2d966c112)) + (fp_line (start 1.75 13.85) (end -1.8 13.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c84a2d26-5711-4fea-b6d5-25d45d30ee66)) + (fp_line (start -1.27 -0.635) (end 0.635 -0.635) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e3cf68c7-a881-4f8b-93e0-3f34721dd594)) + (fp_line (start -1.27 13.335) (end -1.27 -0.635) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 780c8143-9430-4230-81fa-855c82a9de17)) + (fp_line (start 0.635 -0.635) (end 1.27 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ccadf3f-05bc-4184-8f67-30f119306685)) + (fp_line (start 1.27 0) (end 1.27 13.335) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44982774-235f-4b5f-9f2c-f52f5c36f6dc)) + (fp_line (start 1.27 13.335) (end -1.27 13.335) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 626c2f31-ddb4-4d44-999b-df72ce22c7bd)) + (pad "1" thru_hole rect (at 0 0 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 15 "Net-(J14-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 1bd071e2-1bbe-47bb-b614-58ce1af3ba0e)) + (pad "2" thru_hole oval (at 0 1.27 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 30 "Net-(J13-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 1e72e294-dc08-4819-a0be-ec7d67c4b83e)) + (pad "3" thru_hole oval (at 0 2.54 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 28 "unconnected-(J14-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp f7b9e95b-de8b-414c-8167-d107ab024bc6)) + (pad "4" thru_hole oval (at 0 3.81 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 66 "unconnected-(J14-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 25d1d0bf-e85e-45f3-8905-d7db547b08bb)) + (pad "5" thru_hole oval (at 0 5.08 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 67 "unconnected-(J14-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 6e6fe77e-6dc6-41e2-81c7-091731b1aa65)) + (pad "6" thru_hole oval (at 0 6.35 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 9 "L in") (pinfunction "Pin_6") (pintype "passive") (tstamp 8f75a2b3-ef0a-433b-95ab-b93d52b0f468)) + (pad "7" thru_hole oval (at 0 7.62 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 8 "R in") (pinfunction "Pin_7") (pintype "passive") (tstamp e94b9863-86f0-4b70-9dd7-e5ff82e7768c)) + (pad "8" thru_hole oval (at 0 8.89 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_8") (pintype "passive") (tstamp 1be07714-a0c8-4b89-aa9b-9f193a8bd6a4)) + (pad "9" thru_hole oval (at 0 10.16 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 68 "unconnected-(J14-Pin_9-Pad9)") (pinfunction "Pin_9") (pintype "passive") (tstamp a2c42e82-b9ae-45bf-a3af-6c4e05d4365b)) + (pad "10" thru_hole oval (at 0 11.43 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 69 "unconnected-(J14-Pin_10-Pad10)") (pinfunction "Pin_10") (pintype "passive") (tstamp ac4b3524-152f-4331-8a83-3bbd7980c44e)) + (pad "11" thru_hole oval (at 0 12.7 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 70 "unconnected-(J14-Pin_11-Pad11)") (pinfunction "Pin_11") (pintype "passive") (tstamp 5fe4f34c-e629-43f9-88a2-136af66256e9)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_1.27mm.3dshapes/PinSocket_1x11_P1.27mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp bc71b819-e678-4454-8946-7c98abe127a2) + (at 88.9 80.1 180) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/acf61c09-8cc4-4393-8cc2-a83b6afccc41") + (attr smd) + (fp_text reference "R8" (at 0 -1.65) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 07d55d25-54e3-44e8-aae9-9a9971f7870c) + ) + (fp_text value "10K" (at 0 1.65) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ead14b8d-7646-4a3b-938f-c73aa628cd7c) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 658feffb-ed64-47ec-af49-164ffa7b74ce) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1732812c-d205-499a-9be5-45d8221ec930)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 281137f7-8d82-4ceb-8654-f79d29b66171)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de180238-e769-4feb-9378-618bbaad1709)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb56c7d5-333b-46e2-8e83-2fd503aa9cbb)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ea0d064-fcb8-440f-82d6-c36c99a64438)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6b372f9-7e8c-4c2f-9c04-6f3baa960da1)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 010aa568-70bd-4379-89b7-491fd3cfdea3)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b85c2d61-dc40-4e17-8b69-74f7d9d74cd8)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a92b35c0-9452-441e-b065-a2bb15458171)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72264221-a813-4b15-b934-47b0b571ca78)) + (pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 22 "Net-(JP2-C)") (pintype "passive") (tstamp 0f925f5f-c429-40b1-93a5-a6955e005ac4)) + (pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 23 "Net-(Q1-G)") (pintype "passive") (tstamp 7b3e1723-51d0-4d01-aee7-666e36a7511b)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") + (tstamp c04e888d-6974-4585-875b-9532c36d737d) + (at 80.9 86.1 180) + (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOT TO_SOT_SMD") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "0.115A Id, 60V Vds, N-Channel MOSFET, SOT-23") + (property "ki_keywords" "N-Channel Switching MOSFET") + (path "/ec70d42a-be6e-4bbd-9d9f-7699269c4dbf") + (attr smd) + (fp_text reference "Q1" (at 0 -2.4) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b4263959-8880-487f-b4ff-cc2266981444) + ) + (fp_text value "2N7002" (at 0 2.4) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4b7883bc-1c28-42f2-81ef-67afc3888f79) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.32 0.32) (thickness 0.05))) + (tstamp e27632ec-de3f-4aad-b795-8125fe8781f3) + ) + (fp_line (start 0 -1.56) (end -0.65 -1.56) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9effee42-8f52-4e98-8c8d-eac6b924e95b)) + (fp_line (start 0 -1.56) (end 0.65 -1.56) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3215b77-56af-42db-a787-871e9ca81654)) + (fp_line (start 0 1.56) (end -0.65 1.56) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 394665c0-51ec-4049-97a3-85d07caed268)) + (fp_line (start 0 1.56) (end 0.65 1.56) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b866038-fe71-4b1a-9fea-73b4de78d7a9)) + (fp_poly + (pts + (xy -1.1625 -1.51) + (xy -1.4025 -1.84) + (xy -0.9225 -1.84) + (xy -1.1625 -1.51) + ) + + (stroke (width 0.12) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 5e4459bd-c985-4ab8-bcb4-eb870434b1de)) + (fp_line (start -1.92 -1.7) (end -1.92 1.7) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e5e8997-3bbe-4a9f-842d-7bbcc3003a19)) + (fp_line (start -1.92 1.7) (end 1.92 1.7) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 397efe92-7f8e-40fe-bf4a-a401a041f2ce)) + (fp_line (start 1.92 -1.7) (end -1.92 -1.7) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c5c21636-cea1-4d7a-baf2-da30f42159ad)) + (fp_line (start 1.92 1.7) (end 1.92 -1.7) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0c9e6b0-dc87-4dea-88a7-8ad62c1cebca)) + (fp_line (start -0.65 -1.125) (end -0.325 -1.45) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d43f1ae-d6e9-4a09-a26d-5ce7cffee9c0)) + (fp_line (start -0.65 1.45) (end -0.65 -1.125) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7810dbba-b66b-4ee9-9c93-b62da3e3f23e)) + (fp_line (start -0.325 -1.45) (end 0.65 -1.45) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 974ce5a4-85e6-44f7-b962-92d6ca1316ce)) + (fp_line (start 0.65 -1.45) (end 0.65 1.45) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c1afe41-c8df-4c2c-9da5-ccf685e45a57)) + (fp_line (start 0.65 1.45) (end -0.65 1.45) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 550f9c1c-de4d-4c14-964c-156295d3e37a)) + (pad "1" smd roundrect (at -0.9375 -0.95 180) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 23 "Net-(Q1-G)") (pinfunction "G") (pintype "input") (tstamp 6e3c229a-5fc3-4962-ba51-60659afacca9)) + (pad "2" smd roundrect (at -0.9375 0.95 180) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GNDD") (pinfunction "S") (pintype "passive") (tstamp 79a92810-831c-44e6-8e67-ece74fa40b3a)) + (pad "3" smd roundrect (at 0.9375 0 180) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 6 "Net-(Q1-D)") (pinfunction "D") (pintype "passive") (tstamp 7459ab3e-eccf-4af1-84cf-9407770094cf)) + (model "${KICAD7_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp cc2dab68-5247-4682-b4de-fd0166785589) + (at 85.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 59d750e2-56c8-41a1-812d-a4bdeb9b88b8) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp ccb6bfbf-c0af-4f01-b112-570b48653bb1) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 2726ad05-750e-4d67-8e19-7482e6da4c54)) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tstamp d072a9c3-9c21-4de3-a1db-8ab095b6be6d) + (at 92.604 126.482 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Unpolarized capacitor") + (property "ki_keywords" "cap capacitor") + (path "/832906aa-f215-4447-810f-0fc795d5e458") + (attr smd) + (fp_text reference "C2" (at 0 -1.68 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 67538946-a8e4-4476-a026-19df869316ca) + ) + (fp_text value "33nF" (at 0 1.68 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6192a10b-6023-4e4c-b993-aa0198acfc75) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 58c3531f-b8ba-4f78-bf8c-e038d67fdc62) + ) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68fd67db-7f36-4339-8b2f-a3f48b6d4692)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8043f0f-6d94-4a87-a820-463eaf6d1e2b)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3511c4a4-2c07-41f4-ad01-da6a145f3cff)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7adb75f-d06d-4ac5-a73f-c94092992d91)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5dee999c-f13f-49e5-9b10-1eac5bb0c01e)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78acbfaf-3f4b-4e18-ad7c-7342a97f85d8)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d41197f6-2a39-40a4-9434-ce03fb573657)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 200faf86-3e06-48c2-bb95-b32f2dfbb3d4)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2756c65d-1a53-4500-a014-1efad1f3e862)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2221eed5-dc4e-484e-8f25-8822a01c6f6a)) + (pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GNDD") (pintype "passive") (tstamp 2798e895-14b9-4c47-a618-85bcf325fdeb)) + (pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 4 "Net-(C2-Pad2)") (pintype "passive") (tstamp fe68fe76-40f9-4456-9135-9225afba9627)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp d243d506-bdb1-4bb8-910a-d06fc3d2eedd) + (at 78.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp f369037e-9414-49d6-b2e3-c2b7c188137c) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp c558981a-2d9f-40c6-ac80-191f63ba0f98) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 8e905d1c-4250-467d-b6e0-8e128317f9a4)) + ) + + (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu") + (tstamp d30fd2e9-253e-4235-99a5-642a1ec60e86) + (at 86.741 74.676 -90) + (descr "SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOIC SO") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "20MHz, 8kB Flash, 512B SRAM, 512B EEPROM, debugWIRE, SOIC-14") + (property "ki_keywords" "AVR 8bit Microcontroller tinyAVR") + (path "/88bfe42c-fed6-4a06-a938-e929747261ec") + (attr smd) + (fp_text reference "U2" (at 0 -5.28 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 94aa0595-d892-45f0-b0ee-3a07f11dfff9) + ) + (fp_text value "ATtiny84-20SS" (at 0 5.28 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6cd74d67-4772-4b31-a9fe-c1b6c193724d) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.98 0.98) (thickness 0.15))) + (tstamp 2c3e2f57-b8cf-4cc0-8c5a-9fdf2b067eaf) + ) + (fp_line (start 0 -4.435) (end -1.95 -4.435) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e4417db-69e8-4790-a877-b53cb2b4c462)) + (fp_line (start 0 -4.435) (end 1.95 -4.435) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89ca5a93-8ef0-4dcc-91dd-d4797722c98d)) + (fp_line (start 0 4.435) (end -1.95 4.435) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ec9c0b8-dafb-4f91-b159-a28a1a8840a0)) + (fp_line (start 0 4.435) (end 1.95 4.435) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 952f3626-213f-421e-80db-be2a33e63d9c)) + (fp_poly + (pts + (xy -2.7 -4.37) + (xy -2.94 -4.7) + (xy -2.46 -4.7) + (xy -2.7 -4.37) + ) + + (stroke (width 0.12) (type solid)) (fill solid) (layer "F.SilkS") (tstamp f2fd5d2d-64c9-4283-8137-1de79e7997a9)) + (fp_line (start -3.7 -4.58) (end -3.7 4.58) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e460f8b-1144-44d2-bc24-48ce50ad14ba)) + (fp_line (start -3.7 4.58) (end 3.7 4.58) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d067b5b-20b7-4f7a-828a-214dcdd5e815)) + (fp_line (start 3.7 -4.58) (end -3.7 -4.58) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5980a28d-2819-4ba2-ba14-d68917431d4e)) + (fp_line (start 3.7 4.58) (end 3.7 -4.58) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4271a2bb-57d7-4a2c-8423-48db57eaa84c)) + (fp_line (start -1.95 -3.35) (end -0.975 -4.325) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc52ceae-e519-45cd-83fa-a9d8c093b5f3)) + (fp_line (start -1.95 4.325) (end -1.95 -3.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 348de582-7725-4a24-9455-6d7a02920fa6)) + (fp_line (start -0.975 -4.325) (end 1.95 -4.325) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 850c883a-32c2-4cf2-8456-6a9b88b5778b)) + (fp_line (start 1.95 -4.325) (end 1.95 4.325) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 363d81fc-0342-4d9a-98b2-1f4b95ddcb85)) + (fp_line (start 1.95 4.325) (end -1.95 4.325) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ecbfbdae-16a7-4548-9548-a8091f2e34b1)) + (pad "1" smd roundrect (at -2.475 -3.81 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 5 "+3.3V") (pinfunction "VCC") (pintype "power_in") (tstamp 3e2afcf4-878d-4e62-88d2-ee0f62084c11)) + (pad "2" smd roundrect (at -2.475 -2.54 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 25 "Net-(U2-XTAL1{slash}PB0)") (pinfunction "XTAL1/PB0") (pintype "bidirectional") (tstamp 540ce96f-a899-4830-b396-353a688beab5)) + (pad "3" smd roundrect (at -2.475 -1.27 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 26 "Net-(U2-XTAL2{slash}PB1)") (pinfunction "XTAL2/PB1") (pintype "bidirectional") (tstamp 89d26f36-f0d8-4800-86a5-d530e82efa4d)) + (pad "4" smd roundrect (at -2.475 0 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 18 "RST") (pinfunction "~{RESET}/PB3") (pintype "bidirectional") (tstamp 2147963c-e880-4ab7-bc96-a508db066434)) + (pad "5" smd roundrect (at -2.475 1.27 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 17 "SCK") (pinfunction "PB2") (pintype "bidirectional") (tstamp d2779e3a-b7e7-4cc3-b8a7-c600aeff99b7)) + (pad "6" smd roundrect (at -2.475 2.54 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 80 "Net-(U2-PA7)") (pinfunction "PA7") (pintype "bidirectional") (tstamp 4b0b8ebc-727d-4929-b3d2-ad6e955ce4bc)) + (pad "7" smd roundrect (at -2.475 3.81 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 10 "MOSI") (pinfunction "PA6") (pintype "bidirectional") (tstamp 175026ed-09a4-47c1-a3a3-0d10a9bc2860)) + (pad "8" smd roundrect (at 2.475 3.81 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 16 "MISO") (pinfunction "PA5") (pintype "bidirectional") (tstamp 36523cdb-c373-42c4-963f-a3b40f2f33bb)) + (pad "9" smd roundrect (at 2.475 2.54 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 21 "Net-(JP2-A)") (pinfunction "PA4") (pintype "bidirectional") (tstamp f429be8b-d210-40c3-b578-6f4f02f63c18)) + (pad "10" smd roundrect (at 2.475 1.27 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 34 "Net-(J4-Pin_2)") (pinfunction "PA3") (pintype "bidirectional") (tstamp 6e431f4c-ab63-46e5-beee-61a5e7a73bca)) + (pad "11" smd roundrect (at 2.475 0 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 19 "Net-(JP1-A)") (pinfunction "PA2") (pintype "bidirectional") (tstamp b3d9f34e-9217-4815-bc42-494bf92bcc1f)) + (pad "12" smd roundrect (at 2.475 -1.27 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 24 "Net-(U2-PA1)") (pinfunction "PA1") (pintype "bidirectional") (tstamp 47027818-cd40-43b4-9176-ca8434ca8cbe)) + (pad "13" smd roundrect (at 2.475 -2.54 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 27 "unconnected-(U2-AREF{slash}PA0-Pad13)") (pinfunction "AREF/PA0") (pintype "bidirectional") (tstamp d71179a6-1f73-4773-bfa7-ec7b9dca3597)) + (pad "14" smd roundrect (at 2.475 -3.81 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GNDD") (pinfunction "GND") (pintype "power_in") (tstamp 01e28f14-e989-4b70-8d76-11788211fac2)) + (model "${KICAD7_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp d9372c2e-9ac1-4b42-8f5b-40ef5361e998) + (at 84.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 53a3e84e-fef7-4566-840e-8efffbc63897) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 25fba0ac-ca59-4857-bc2b-d7557b27de6b) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 0418ce14-e96e-4afc-aa5c-5d6e7c55cd89)) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp db5fb940-52a1-4ae6-838e-28bf422144ed) + (at 92.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 3f14e92e-0ef7-4c14-bf33-fd2d5e51a334) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 4c656327-a4ca-4a63-966c-afe3704fce16) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp 3f9d7554-b95d-45fc-8ed1-ceed83f89736)) + ) + + (footprint "Connector_PinSocket_2.54mm:PinSocket_2x03_P2.54mm_Vertical" (layer "F.Cu") + (tstamp dc17f874-afaf-414c-87b0-de8d6a215dbf) + (at 76.053 77.963 180) + (descr "Through hole straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 2x03 2.54mm double row") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Atmel 6-pin ISP connector") + (property "ki_keywords" "AVR ISP Connector") + (path "/34dba751-bb4b-4dbf-9d7b-1d96071ce965") + (attr through_hole) + (fp_text reference "J12" (at -1.27 -2.77) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b2d82a68-4719-4fd3-8971-b80f43c9a781) + ) + (fp_text value "AVR-ISP-6" (at -1.27 7.85) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp da47b9ae-b7bd-49ec-a4d7-6904e339dd43) + ) + (fp_text user "${REFERENCE}" (at -1.27 2.54 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e1d85218-029f-45dd-9e2c-1dc67576517f) + ) + (fp_line (start -3.87 -1.33) (end -3.87 6.41) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 748e0eb3-4d96-4e0c-abab-4c5b7bf38133)) + (fp_line (start -3.87 -1.33) (end -1.27 -1.33) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e63d3c60-e729-4844-b50a-04a294a5a7d1)) + (fp_line (start -3.87 6.41) (end 1.33 6.41) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ab1cd60-d4f3-4467-b23b-fb872960103c)) + (fp_line (start -1.27 -1.33) (end -1.27 1.27) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4898b43a-ad81-4253-8c6d-4137f46c317c)) + (fp_line (start -1.27 1.27) (end 1.33 1.27) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa56bdba-2f8a-49ef-b48b-95dd1da65036)) + (fp_line (start 0 -1.33) (end 1.33 -1.33) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8953b0c8-337b-4273-8977-9d1fdc4a7fa7)) + (fp_line (start 1.33 -1.33) (end 1.33 0) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88e50acc-a4f9-44af-81b0-99cda93155ee)) + (fp_line (start 1.33 1.27) (end 1.33 6.41) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 906a5a46-cdd3-4fbb-8b1a-ce36180ab198)) + (fp_line (start -4.34 -1.8) (end 1.76 -1.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 406febaf-e954-4227-a21b-365a11bbe219)) + (fp_line (start -4.34 6.85) (end -4.34 -1.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfb12bb3-0393-4864-bec6-7a933c851e9a)) + (fp_line (start 1.76 -1.8) (end 1.76 6.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b63467e-bfcf-4f8b-9820-8da7aec8b514)) + (fp_line (start 1.76 6.85) (end -4.34 6.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21b6593e-5462-4db5-a36c-ef4d52ab321b)) + (fp_line (start -3.81 -1.27) (end 0.27 -1.27) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9820b875-8e91-4b2b-a789-6f073b851465)) + (fp_line (start -3.81 6.35) (end -3.81 -1.27) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 570f023f-a20b-4a32-99d0-5f43ec1812d2)) + (fp_line (start 0.27 -1.27) (end 1.27 -0.27) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc1a7d53-a7b5-4203-82f8-674deb36108b)) + (fp_line (start 1.27 -0.27) (end 1.27 6.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 478d0eab-90d4-4b2d-b657-49df7b6c9a3d)) + (fp_line (start 1.27 6.35) (end -3.81 6.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f97bf479-5a52-4c8c-8813-6d348b6034cf)) + (pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 16 "MISO") (pinfunction "MISO") (pintype "passive") (tstamp b2ea51d4-6384-4b78-b642-e96866dea8aa)) + (pad "2" thru_hole oval (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 5 "+3.3V") (pinfunction "VCC") (pintype "passive") (tstamp a08f528c-6a30-46fc-bda3-414f55ccb806)) + (pad "3" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 17 "SCK") (pinfunction "SCK") (pintype "passive") (tstamp 4d6bb6fe-d4a4-4953-9951-9f55be42edb8)) + (pad "4" thru_hole oval (at -2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 10 "MOSI") (pinfunction "MOSI") (pintype "passive") (tstamp 6922f6a8-7b93-4835-90c1-1e4b841a77fa)) + (pad "5" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 18 "RST") (pinfunction "~{RST}") (pintype "passive") (tstamp 4878cc7d-aa24-4c79-ad4b-dba1edc2560d)) + (pad "6" thru_hole oval (at -2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "GND") (pintype "passive") (tstamp 8cfe4c0a-ea93-41a9-b19d-ba639ecfb624)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x03_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp de0f9023-7970-4eed-b346-3d4e04cbe5c5) + (at 88.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 177df779-8a8c-44ee-a275-13ceef8e57da) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 60403c40-37c4-4c40-a70a-67bb4aaa0219) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp c9f6ec5f-3fb8-4564-a407-9aa77796025f)) + ) + + (footprint "OptoDevice:Vishay_MINICAST-3Pin" (layer "F.Cu") + (tstamp ec4bdb4b-e2e7-428d-a7a7-909aee555d58) + (at 76.454 95.758 -90) + (descr "IR Receiver Vishay TSOP-xxxx, MINICAST package, see https://www.vishay.com/docs/82669/tsop32s40f.pdf") + (tags "IR Receiver Vishay TSOP-xxxx MINICAST") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Photo Module (Amplify&Condition) for PCM Remote Control Systems") + (property "ki_keywords" "opto IR receiver") + (path "/df8262c6-e786-42cb-ad17-ea2dfe88b5eb") + (attr through_hole) + (fp_text reference "U1" (at 2.5 -2.4 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 46f5c264-7cac-431d-b45d-1e27ca2ac62c) + ) + (fp_text value "TSMP58000" (at 2.55 4.6 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5bfea1fe-e24e-4094-ae03-bdff66fe5cc6) + ) + (fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c69d3b03-72b0-4cc7-b84c-52a9f93ff926) + ) + (fp_line (start 5.14 -1.51) (end 2.54 -1.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae6ab3bb-6c53-4d61-8eff-1f0f681a1d3a)) + (fp_line (start 5.14 -1.16) (end 5.14 -1.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2758f791-6076-4de3-a443-62dd8a4007cf)) + (fp_line (start 5.14 1.16) (end 5.14 1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8491e8b6-a89b-4a46-bde9-28fd7842c58e)) + (fp_line (start 5.14 1.5) (end 0.05 1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba9146cb-0200-4670-a8b2-ea55440215a3)) + (fp_arc (start 4.64 1.5) (mid 2.540869 3.502379) (end 0.440083 1.501736) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef7be090-7705-4b6a-9e0f-78d1bd39d14e)) + (fp_line (start -1.15 -1.65) (end -1.15 3.7) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca2efddd-92f6-408d-b7c2-0ddfd25d07ab)) + (fp_line (start -1.15 -1.65) (end 6.23 -1.65) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e214690-8e5c-4577-ad5f-36324b4e8475)) + (fp_line (start 6.23 3.7) (end -1.15 3.7) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba005f7e-de2d-4b69-bc7e-8d18c2ab3bef)) + (fp_line (start 6.23 3.7) (end 6.23 -1.65) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8ffde44-7461-4548-99fe-8681eb006bab)) + (fp_line (start 0.04 1.4) (end 0.04 -0.65) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d246df58-6ef7-4e1a-b44e-b5cceff7eb10)) + (fp_line (start 0.79 -1.4) (end 0.04 -0.65) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f30b8cba-cfa9-40ba-b868-d107a66481ab)) + (fp_line (start 0.79 -1.4) (end 5.04 -1.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee4d5fc3-3648-4355-afac-05f6fa69975b)) + (fp_line (start 5.04 -1.4) (end 5.04 1.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60d198ac-b410-4ffe-8e38-35ed1fd772b4)) + (fp_line (start 5.04 1.4) (end 0.04 1.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 918316f7-c1c1-446a-97dc-005cdc662453)) + (fp_arc (start 4.54 1.4) (mid 2.54 3.4) (end 0.54 1.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 076162ef-433b-4b08-adfb-02d3baa7a713)) + (pad "1" thru_hole roundrect (at 0 0 270) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.139) + (net 20 "Net-(JP1-C)") (pinfunction "OUT") (pintype "output") (tstamp 40b077cd-0fa6-49bc-aa34-318176d65eda)) + (pad "2" thru_hole circle (at 2.54 0 270) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "GND") (pintype "power_in") (tstamp 86367368-d1ac-4166-b977-95a6adbfb6fe)) + (pad "3" thru_hole circle (at 5.08 0 270) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask") + (net 5 "+3.3V") (pinfunction "Vs") (pintype "power_in") (tstamp bf740f35-c5fd-45e0-9e9b-691dcd3edefd)) + (model "${KICAD6_3DMODEL_DIR}/OptoDevice.3dshapes/Vishay_MINICAST-3Pin.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (layer "F.Cu") + (tstamp ec733b1a-ae1d-4ac7-a30b-0a7cd6e7f017) + (at 94.386 68.072) + (descr "Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 1x04 2.54mm single row") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/702f9d50-1ee6-49e5-83d1-9905f0002212") + (attr through_hole) + (fp_text reference "J4" (at 0 -2.77) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 52c9ecdb-2162-4773-ba98-0597de9d3ca3) + ) + (fp_text value "RF 433mHz" (at 0 10.39) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2e2209ae-3306-4eb3-b9c7-0daad13a26d5) + ) + (fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 49e2c36e-1508-4aa1-91c9-9bc2f11c9833) + ) + (fp_line (start -1.33 1.27) (end -1.33 8.95) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cdc30b4c-ad73-45de-ac53-41b173f1a8f0)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b16d118-30b3-4c3f-b937-29d9c12580c1)) + (fp_line (start -1.33 8.95) (end 1.33 8.95) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc53fdf4-3c53-4fd1-96e5-ef8917ec4042)) + (fp_line (start 0 -1.33) (end 1.33 -1.33) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c503e36a-0ebf-4cc7-9b97-d35a22b6b884)) + (fp_line (start 1.33 -1.33) (end 1.33 0) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7fe96a3c-f875-4947-bc23-2ce4dbcca06b)) + (fp_line (start 1.33 1.27) (end 1.33 8.95) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8714938-c5cc-4506-96e1-61c7db799dca)) + (fp_line (start -1.8 -1.8) (end 1.75 -1.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae69e074-42c0-4176-89bf-74fe4d2ae64e)) + (fp_line (start -1.8 9.4) (end -1.8 -1.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f7ba534-5188-4deb-a47d-3b6d7424b752)) + (fp_line (start 1.75 -1.8) (end 1.75 9.4) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b49c414c-432e-4d28-b819-3ee18a971434)) + (fp_line (start 1.75 9.4) (end -1.8 9.4) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a97a9d2d-5bc8-4394-9970-5f5d889b99a1)) + (fp_line (start -1.27 -1.27) (end 0.635 -1.27) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ec29371-1fe1-4278-ab4a-b7f20aa8c147)) + (fp_line (start -1.27 8.89) (end -1.27 -1.27) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp abe134ad-af30-4004-8126-965e408d41e9)) + (fp_line (start 0.635 -1.27) (end 1.27 -0.635) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 61ba4c55-40bb-435b-a174-b86feef99b9f)) + (fp_line (start 1.27 -0.635) (end 1.27 8.89) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21378a5d-ed0e-4f46-9347-d98d859d6561)) + (fp_line (start 1.27 8.89) (end -1.27 8.89) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3aef6620-2ba9-4864-bb37-49adbf398a36)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_1") (pintype "passive") (tstamp a91550a9-ddc7-4217-b51d-25dd8484807c)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 34 "Net-(J4-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 8a5712a5-905e-4824-8fcc-315b03b72b21)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 34 "Net-(J4-Pin_2)") (pinfunction "Pin_3") (pintype "passive") (tstamp bd4f62b8-2d1d-4dcc-bf24-4c4fb3edb6df)) + (pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 29 "+5V") (pinfunction "Pin_4") (pintype "passive") (tstamp e003aa01-42f7-4a34-913a-f36a7751503f)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x04_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:hole" (layer "F.Cu") + (tstamp f502f38e-9bfe-494e-9963-8b0baa557e2a) + (at 79.83 104.58) + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 65feb67d-a154-409a-9b36-41f584d86651) + ) + (fp_text value "" (at 0 0) (layer "F.SilkS") + (effects (font (size 1.27 1.27) (thickness 0.15))) + (tstamp 5864026f-40c4-4a79-999b-e61f107fb2c3) + ) + (pad "" np_thru_hole circle (at 0 0) (size 0.3 0.3) (drill 0.3) (layers "F&B.Cu" "*.Mask") (tstamp e0b49eaf-4f9b-40a0-800d-4e2264f4daeb)) + ) + + (footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu") + (tstamp fba29fea-6159-44d3-9883-62f98560d385) + (at 90.104 126.5445 90) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor") + (property "ki_keywords" "R res resistor") + (path "/7c78102b-631e-4b79-9a9e-270fb6be24b0") + (attr smd) + (fp_text reference "R4" (at 0 -1.65 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 00303863-effd-448b-92bb-7544718d4af7) + ) + (fp_text value "150" (at 0 1.65 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 71774e4c-93dd-4ac2-8a59-ff291318178a) + ) + (fp_text user "${REFERENCE}" (at 0 0.625 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp d7658e53-08bf-48b2-bd9b-a700a25b4610) + ) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d06e7bf4-92b9-47c0-a69d-619195ce1bf8)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b823e9bc-e6b5-4840-8a5e-eed24bf4d891)) + (fp_line (start -1.68 -0.95) (end 1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c5e3ee9a-45d9-4b16-a06a-3072de91af57)) + (fp_line (start -1.68 0.95) (end -1.68 -0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db558af4-a5d4-4b79-9690-ca9d982823ec)) + (fp_line (start 1.68 -0.95) (end 1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 367e3203-c75e-4e92-b4fa-496a15160a20)) + (fp_line (start 1.68 0.95) (end -1.68 0.95) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f941ef9-2894-4913-9b26-8f9348dcd29f)) + (fp_line (start -1 -0.625) (end 1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f119cc1-eff1-48b0-8c7d-1939df5a9a57)) + (fp_line (start -1 0.625) (end -1 -0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a40eccfd-5355-4cef-bc80-3269ce62f785)) + (fp_line (start 1 -0.625) (end 1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1bcbf6b3-a999-42e5-8a77-c1086c5b85df)) + (fp_line (start 1 0.625) (end -1 0.625) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51e06a3d-02c3-4810-b8e0-f8532141821b)) + (pad "1" smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 2 "GNDD") (pintype "passive") (tstamp 6f9160f1-1dac-41cd-8c0e-6a022084a021)) + (pad "2" smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) + (net 4 "Net-(C2-Pad2)") (pintype "passive") (tstamp e2b5b6b8-31dc-4932-a8f8-8fce99e4df4a)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:CONTACT_1" (layer "B.Cu") + (tstamp 06a2c521-ba53-4197-975c-6c1be36edc91) + (at 95.3 116.3 -90) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/cebcb502-02ec-44e9-9a7c-c6c29e65b707") + (attr through_hole) + (fp_text reference "J9" (at 0 -2.5 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp bd99a2ad-4900-447e-b3ea-db2dd2578d90) + ) + (fp_text value "~" (at 0 2.3 90) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 83ed6d64-2f83-449d-9f50-bb60b3015546) + ) + (pad "1" smd rect (at -0.1 0 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 57 "Net-(J5-Pin_37)") (pinfunction "Pin_1") (pintype "passive") (tstamp f521d1f9-b84e-40f6-8b28-57413cd0913f)) + ) + + (footprint "MY:CONTACT_1" (layer "B.Cu") + (tstamp 1fe820b8-0e32-458d-a624-983749a051ba) + (at 85.65 109.13 90) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/f30eccc7-c74a-4961-a2ec-e77bca81fc4d") + (attr through_hole) + (fp_text reference "J16" (at 0 -2.5 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 88033931-ef0d-41fb-91dd-868535abde82) + ) + (fp_text value "~" (at 0 2.3 90) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp ccf02748-5ac0-4ccb-abc1-b508cf023478) + ) + (pad "1" smd rect (at -0.1 0 90) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 71 "Net-(J16-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 150bd527-57e4-49f6-b92a-49f1712a1053)) + ) + + (footprint "MY:Raspberry_Pi_Zero" (layer "B.Cu") + (tstamp 344b3f33-c894-4d2b-909c-e7c9abee588e) + (at 98.044 72.942 180) + (descr "Raspberry Pi Zero using through hole straight pin socket, 2x20, 2.54mm pitch, https://www.raspberrypi.org/documentation/hardware/raspberrypi/mechanical/rpi_MECH_Zero_1p2.pdf") + (tags "raspberry pi zero through hole") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/14d8284e-fe7f-4d80-a19e-1e9aa883c12b") + (attr through_hole) + (fp_text reference "J5" (at -6.27 -24.13 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp c9c06293-5153-4719-9f3e-a33a26a24ddc) + ) + (fp_text value "RPi" (at 10.23 -24.13 90) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 5c9f6ce4-87f2-4807-a809-beb390fbaa80) + ) + (fp_text user "${REFERENCE}" (at -1.27 -24.13 90) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 99de3826-6699-4acb-92a9-ca92e24911f4) + ) + (fp_line (start -3.87 -49.59) (end 1.33 -49.59) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3145b637-0476-4452-99e6-6928e22c9adf)) + (fp_line (start -3.87 1.33) (end -3.87 -49.59) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f2213f15-9d0c-4660-919d-65c7793fb9f1)) + (fp_line (start -3.87 1.33) (end -1.27 1.33) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f460572c-45fd-412f-a059-41ed7fbb37e6)) + (fp_line (start -1.27 -1.27) (end 1.33 -1.27) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c4e94d20-6ad0-46c3-bb23-82f7cd137700)) + (fp_line (start -1.27 1.33) (end -1.27 -1.27) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 004505fc-12e7-47a3-b1f0-943954831263)) + (fp_line (start 0 1.33) (end 1.33 1.33) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 2423d60e-a042-4bb7-94cc-8823e8cfbdb5)) + (fp_line (start 1.33 -1.27) (end 1.33 -49.59) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 76c9b8cb-37e8-4383-bbc4-17906d4ad7d6)) + (fp_line (start 1.33 1.33) (end 1.33 0) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e0c2f064-1d1a-4f90-b030-6e3f466585cd)) + (fp_line (start -4.34 -50) (end -4.34 1.8) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1e2b3e5b-93c5-4806-bd6e-31ccdadaa3b3)) + (fp_line (start -4.34 1.8) (end 1.76 1.8) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 90c35387-1511-4b89-9e2a-574e4491f727)) + (fp_line (start 1.76 -50) (end -4.34 -50) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d8f94840-5a35-44f8-ba57-46f36f99c717)) + (fp_line (start 1.76 1.8) (end 1.76 -50) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 43af0b4c-e183-4fe4-94a4-7b9e7d9aed08)) + (fp_line (start -4.77 -53.63) (end -4.77 5.37) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fd955a5c-e3b0-45e4-bfe1-d43b3fdbd496)) + (fp_line (start -3.81 -49.53) (end -3.81 1.27) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a3c2da3e-5553-4e27-a0e3-cec2ec247663)) + (fp_line (start -3.81 1.27) (end 0.27 1.27) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 999550a1-c12f-401b-8775-88b213c18450)) + (fp_line (start -1.77 -56.63) (end 18.73 -56.63) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 80f2ef9d-e678-4987-8bbe-ca7fb776f9ec)) + (fp_line (start -1.77 8.37) (end 22.23 8.37) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9b2bc795-a440-460b-809e-10e0d05b3d0c)) + (fp_line (start 0.27 1.27) (end 1.27 0.27) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b05e60b0-a47e-4503-9988-f7a4ea5d1b03)) + (fp_line (start 1.27 -49.53) (end -3.81 -49.53) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 23330cb7-4c42-4d3c-90ed-1c64b18a6e72)) + (fp_line (start 1.27 0.27) (end 1.27 -49.53) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a2da0dbf-1bce-4253-adca-5a92ae02a485)) + (fp_line (start 22.23 -56.63) (end 18.73 -56.63) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a81dc8fc-274e-4362-b7e4-446591ed505d)) + (fp_line (start 25.23 -49.63) (end 25.23 -53.63) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ae53bb1d-4e5c-4fcf-aa67-f9e4288a57c5)) + (fp_line (start 25.23 -49.63) (end 25.23 1.62) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f28f7582-145b-448a-90f4-4590b9e56c0a)) + (fp_line (start 25.23 1.62) (end 25.23 5.37) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ad3cd662-2e9d-44d4-86f9-14f85b16805c)) + (fp_arc (start -4.77 -53.63) (mid -3.89132 -55.75132) (end -1.77 -56.63) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7dd7663e-bcb0-4525-b19f-4bfdd4a4f795)) + (fp_arc (start -1.77 8.37) (mid -3.89132 7.49132) (end -4.77 5.37) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2a9ba34b-9b76-4d4f-9881-6fee422a641e)) + (fp_arc (start 22.23 -56.63) (mid 24.35132 -55.75132) (end 25.23 -53.63) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9db1d023-8bea-4def-858f-6f5f895b5334)) + (fp_arc (start 25.23 5.37) (mid 24.35132 7.49132) (end 22.23 8.37) + (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 964ee340-311a-40a6-a89d-6e203f617995)) + (pad "" np_thru_hole circle (at -1.27 -53.13 90) (size 2.75 2.75) (drill 2.75) (layers "F&B.Cu" "*.Mask") + (solder_mask_margin 1) (tstamp 486fafba-a018-46ab-bd13-c42d5e2f8dce)) + (pad "" np_thru_hole circle (at -1.27 4.87 90) (size 2.75 2.75) (drill 2.75) (layers "F&B.Cu" "*.Mask") + (solder_mask_margin 1) (tstamp b2c15bc3-5d5a-40ad-a546-b8a2759c9c53)) + (pad "" np_thru_hole circle (at 21.73 -53.13 90) (size 2.75 2.75) (drill 2.75) (layers "F&B.Cu" "*.Mask") + (solder_mask_margin 1) (tstamp 598184ce-4301-4564-8186-a4475a53d920)) + (pad "" np_thru_hole circle (at 21.73 4.87 90) (size 2.75 2.75) (drill 2.75) (layers "F&B.Cu" "*.Mask") + (solder_mask_margin 1) (tstamp 65b88903-4777-42f0-bee3-924844a210cc)) + (pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 5 "+3.3V") (pinfunction "Pin_1") (pintype "passive") (tstamp 53fece44-8ea2-423a-be8a-3c99861d2f75)) + (pad "2" thru_hole oval (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 29 "+5V") (pinfunction "Pin_2") (pintype "passive") (tstamp bc51bf98-6e00-49f5-af47-a9f55df5a4d4)) + (pad "3" thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 35 "unconnected-(J5-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 5e092cd4-2456-44da-b598-aed361c3dc32)) + (pad "4" thru_hole oval (at -2.54 -2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 29 "+5V") (pinfunction "Pin_4") (pintype "passive") (tstamp f24955f7-b35d-40e0-a649-839ad5f0f4d6)) + (pad "5" thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 36 "unconnected-(J5-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp dbfff288-696b-4c83-b710-125ec2f7005d)) + (pad "6" thru_hole oval (at -2.54 -5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_6") (pintype "passive") (tstamp 420eaaaa-0c1e-4040-8b4c-f3ef8e1137c7)) + (pad "7" thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 37 "unconnected-(J5-Pin_7-Pad7)") (pinfunction "Pin_7") (pintype "passive") (tstamp d5df098d-8bb4-42e4-bcf8-14e233c7904e)) + (pad "8" thru_hole oval (at -2.54 -7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 79 "Net-(J5-Pin_8)") (pinfunction "Pin_8") (pintype "passive") (tstamp e89f22c7-f572-4ccc-9aa9-f0391a6c6c04)) + (pad "9" thru_hole oval (at 0 -10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_9") (pintype "passive") (tstamp 14f35793-573a-4988-b04d-03661def9c32)) + (pad "10" thru_hole oval (at -2.54 -10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 38 "Net-(J5-Pin_10)") (pinfunction "Pin_10") (pintype "passive") (tstamp f7e5f7b4-2146-4dec-9306-35bdb846bc27)) + (pad "11" thru_hole oval (at 0 -12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 39 "unconnected-(J5-Pin_11-Pad11)") (pinfunction "Pin_11") (pintype "passive") (tstamp c555427a-da90-4b1d-a15b-95c5a4685809)) + (pad "12" thru_hole oval (at -2.54 -12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 40 "unconnected-(J5-Pin_12-Pad12)") (pinfunction "Pin_12") (pintype "passive") (tstamp 80828ef6-72d2-4d2a-a965-8875b6652f4d)) + (pad "13" thru_hole oval (at 0 -15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 41 "unconnected-(J5-Pin_13-Pad13)") (pinfunction "Pin_13") (pintype "passive") (tstamp 499f594e-c43a-4d7e-957a-718a2c6cc7de)) + (pad "14" thru_hole oval (at -2.54 -15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_14") (pintype "passive") (tstamp 6ab3ab6e-18ab-4fbb-b600-e30687cd97c4)) + (pad "15" thru_hole oval (at 0 -17.78 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 42 "unconnected-(J5-Pin_15-Pad15)") (pinfunction "Pin_15") (pintype "passive") (tstamp 0a580b88-ed29-49b6-91b1-61223c779cee)) + (pad "16" thru_hole oval (at -2.54 -17.78 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 43 "unconnected-(J5-Pin_16-Pad16)") (pinfunction "Pin_16") (pintype "passive") (tstamp bc8de9b6-2282-47d0-99db-ef5ca65ab8e9)) + (pad "17" thru_hole oval (at 0 -20.32 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 44 "unconnected-(J5-Pin_17-Pad17)") (pinfunction "Pin_17") (pintype "passive") (tstamp 0e994e0b-fdf9-4edc-b9dc-83cfc824e670)) + (pad "18" thru_hole oval (at -2.54 -20.32 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 45 "unconnected-(J5-Pin_18-Pad18)") (pinfunction "Pin_18") (pintype "passive") (tstamp d29fcb30-8558-4451-b431-05ae6b42f02d)) + (pad "19" thru_hole oval (at 0 -22.86 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 46 "unconnected-(J5-Pin_19-Pad19)") (pinfunction "Pin_19") (pintype "passive") (tstamp f8e3a363-b3bc-4fcb-b7ca-046d4db13b67)) + (pad "20" thru_hole oval (at -2.54 -22.86 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_20") (pintype "passive") (tstamp a8a025c3-e521-4c01-a047-eb859b57c9cc)) + (pad "21" thru_hole oval (at 0 -25.4 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 47 "unconnected-(J5-Pin_21-Pad21)") (pinfunction "Pin_21") (pintype "passive") (tstamp b323b7c0-a542-4f52-b707-fc12f9446273)) + (pad "22" thru_hole oval (at -2.54 -25.4 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 11 "PRi IR in") (pinfunction "Pin_22") (pintype "passive") (tstamp 3b2716e2-70aa-4c48-bed2-2d3fc8970ab2)) + (pad "23" thru_hole oval (at 0 -27.94 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 12 "RPi IR out") (pinfunction "Pin_23") (pintype "passive") (tstamp 39ba9008-2997-4018-b7a7-03046ff1a86b)) + (pad "24" thru_hole oval (at -2.54 -27.94 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 48 "unconnected-(J5-Pin_24-Pad24)") (pinfunction "Pin_24") (pintype "passive") (tstamp b6ec5e1c-9b88-4010-ae07-f9b88b8490b4)) + (pad "25" thru_hole oval (at 0 -30.48 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_25") (pintype "passive") (tstamp 9f40f718-5924-4064-b60e-bc0980961e11)) + (pad "26" thru_hole oval (at -2.54 -30.48 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 49 "unconnected-(J5-Pin_26-Pad26)") (pinfunction "Pin_26") (pintype "passive") (tstamp b2860889-bdfa-4b7c-956f-f662e9d7268a)) + (pad "27" thru_hole oval (at 0 -33.02 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 50 "unconnected-(J5-Pin_27-Pad27)") (pinfunction "Pin_27") (pintype "passive") (tstamp f9cc0347-5e14-41ef-8756-2bfe0c6701ef)) + (pad "28" thru_hole oval (at -2.54 -33.02 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 51 "unconnected-(J5-Pin_28-Pad28)") (pinfunction "Pin_28") (pintype "passive") (tstamp 9173e5cf-4bc5-4a25-a37a-78677da5bd75)) + (pad "29" thru_hole oval (at 0 -35.56 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 52 "Net-(J5-Pin_29)") (pinfunction "Pin_29") (pintype "passive") (tstamp a542d788-4dea-414d-859b-c9892c91a99b)) + (pad "30" thru_hole oval (at -2.54 -35.56 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_30") (pintype "passive") (tstamp ec758a86-e24b-4084-a751-5a5afc664457)) + (pad "31" thru_hole oval (at 0 -38.1 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 53 "Net-(J5-Pin_31)") (pinfunction "Pin_31") (pintype "passive") (tstamp 5b9ed43a-e2bf-406b-9bd7-96f2aee8a299)) + (pad "32" thru_hole oval (at -2.54 -38.1 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 54 "Net-(J5-Pin_32)") (pinfunction "Pin_32") (pintype "passive") (tstamp b74176dd-354b-4676-9051-fac8a2ecfabf)) + (pad "33" thru_hole oval (at 0 -40.64 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 55 "Net-(J5-Pin_33)") (pinfunction "Pin_33") (pintype "passive") (tstamp 20d89bb7-f9f6-4f2e-958f-d7c45d0f7098)) + (pad "34" thru_hole oval (at -2.54 -40.64 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_34") (pintype "passive") (tstamp 5209191b-1e70-4d3d-9517-4a5a7a23867c)) + (pad "35" thru_hole oval (at 0 -43.18 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 56 "Net-(J5-Pin_35)") (pinfunction "Pin_35") (pintype "passive") (tstamp 7a4a2b0a-5cd9-4b73-b089-e9fa8e6734a3)) + (pad "36" thru_hole oval (at -2.54 -43.18 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 31 "Net-(J1-Pin_1)") (pinfunction "Pin_36") (pintype "passive") (tstamp 2c1c251d-f0c3-432c-9268-066d3ee7eedf)) + (pad "37" thru_hole oval (at 0 -45.72 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 57 "Net-(J5-Pin_37)") (pinfunction "Pin_37") (pintype "passive") (tstamp 162ffeed-3515-4174-9923-00bf6c217c9b)) + (pad "38" thru_hole oval (at -2.54 -45.72 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 32 "Net-(J2-Pin_1)") (pinfunction "Pin_38") (pintype "passive") (tstamp 5d06c7e9-5a30-483d-b78f-4284c54c72fd)) + (pad "39" thru_hole oval (at 0 -48.26 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GNDD") (pinfunction "Pin_39") (pintype "passive") (tstamp 737938ae-261e-42f0-af7e-694994eca23e)) + (pad "40" thru_hole oval (at -2.54 -48.26 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 33 "Net-(J3-Pin_1)") (pinfunction "Pin_40") (pintype "passive") (tstamp e9f4e692-560f-4ab7-bdc4-88d15e445f89)) + (model "${KICAD6_3DMODEL_DIR}/Module.3dshapes/Raspberry_Pi_Zero_Socketed_THT_FaceDown_MountingHoles.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MY:CONTACT_1" (layer "B.Cu") + (tstamp 45d04e9d-dd4c-414a-af53-3c6cc0d5474f) + (at 95.25 110.35 90) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/09d91f72-cf46-4f0b-8d3a-35509deadddf") + (attr through_hole) + (fp_text reference "J6" (at 0 -2.5 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 03c61dab-9327-4cef-bb9d-237f1ac896c2) + ) + (fp_text value "~" (at 0 2.3 90) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 113e9222-7397-43ee-b0d3-3dc956c07e8e) + ) + (pad "1" smd rect (at -0.1 0 90) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 52 "Net-(J5-Pin_29)") (pinfunction "Pin_1") (pintype "passive") (tstamp 5a88ceba-3c8c-4d9c-828e-8a8f344daa5e)) + ) + + (footprint "MY:CONTACT_1" (layer "B.Cu") + (tstamp 53cd3846-7fd8-423f-9596-736ea581d519) + (at 92.55 126) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/24ce8208-dc03-4436-8fe3-014e24517763") + (attr through_hole) + (fp_text reference "J2" (at 0 -2.5) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 8ef58670-f18f-4e6a-9bcf-ecd93072ae62) + ) + (fp_text value "~" (at 0 2.3) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp ac4e3f64-2f78-4c27-a3c3-c9a521b81c04) + ) + (pad "1" smd rect (at -0.1 0) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 32 "Net-(J2-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 9f551a82-d396-4604-a81d-7e77db06de6f)) + ) + + (footprint "MY:babooshka" (layer "B.Cu") + (tstamp 63097bba-8300-4ac8-b935-1d80dd009a99) + (at 91.1 100.8 180) + (descr "Imported from babooshka.svg") + (tags "svg2mod") + (attr smd) + (fp_text reference "svg2mod" (at 0 5.288045) (layer "B.SilkS") hide + (effects (font (size 1.524 1.524) (thickness 0.3048)) (justify mirror)) + (tstamp 922af038-46ab-4d09-9e54-5163cf578243) + ) + (fp_text value "G***" (at 0 -5.288045) (layer "B.SilkS") hide + (effects (font (size 1.524 1.524) (thickness 0.3048)) (justify mirror)) + (tstamp e1bcd1e9-0c28-4872-9beb-294b399e1346) + ) + (fp_poly + (pts + (xy 0.474015 0.446052) + (xy 0.326804 0.444901) + (xy 0.172462 0.441174) + (xy 0.015171 0.435123) + (xy -0.140891 0.426997) + (xy -0.291545 0.417047) + (xy -0.432612 0.405524) + (xy -0.559912 0.392677) + (xy -0.669265 0.378759) + (xy -0.756494 0.364019) + (xy -0.817417 0.348707) + (xy -0.936689 0.296566) + (xy -1.018121 0.233609) + (xy -1.064375 0.160612) + (xy -1.089332 0.054024) + (xy -1.101339 -0.086543) + (xy -1.102294 -0.24541) + (xy -1.094095 -0.406899) + (xy -1.078642 -0.555332) + (xy -1.057832 -0.67503) + (xy -1.033565 -0.750314) + (xy -0.961091 -0.846747) + (xy -0.876994 -0.903368) + (xy -0.786607 -0.93841) + (xy -0.720219 -0.954155) + (xy -0.6221 -0.969078) + (xy -0.498025 -0.982904) + (xy -0.353771 -0.995363) + (xy -0.19511 -1.006181) + (xy -0.02782 -1.015087) + (xy 0.142327 -1.021807) + (xy 0.309554 -1.02607) + (xy 0.468087 -1.027603) + (xy 0.61215 -1.026134) + (xy 0.73597 -1.02139) + (xy 0.833771 -1.013099) + (xy 0.899777 -1.000988) + (xy 1.007442 -0.96083) + (xy 1.093327 -0.901317) + (xy 1.146675 -0.812893) + (xy 1.16569 -0.732256) + (xy 1.183913 -0.617723) + (xy 1.20008 -0.479957) + (xy 1.212924 -0.329623) + (xy 1.221181 -0.177385) + (xy 1.223586 -0.033908) + (xy 1.218873 0.090145) + (xy 1.205777 0.184108) + (xy 1.165738 0.273399) + (xy 1.097281 0.341702) + (xy 1.007216 0.390444) + (xy 0.902354 0.421055) + (xy 0.825198 0.432193) + (xy 0.72548 0.439909) + (xy 0.607114 0.444448) + (xy 0.474015 0.446052) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp d85e2638-8b16-4982-abbc-e1ed873aba7c)) + (fp_poly + (pts + (xy 1.169106 2.158844) + (xy -0.110682 0.825182) + (xy 0.049075 0.819393) + (xy 0.208941 0.81214) + (xy 0.367027 0.803537) + (xy 0.521448 0.793697) + (xy 0.670315 0.782734) + (xy 0.811742 0.770761) + (xy 0.943841 0.757893) + (xy 1.064725 0.744242) + (xy 1.172507 0.729923) + (xy 1.2653 0.715049) + (xy 1.341216 0.699733) + (xy 1.398368 0.68409) + (xy 1.540306 0.626108) + (xy 1.649199 0.558745) + (xy 1.72678 0.482439) + (xy 1.774783 0.397627) + (xy 1.801444 0.30146) + (xy 1.819698 0.180789) + (xy 1.830287 0.041776) + (xy 1.833955 -0.109417) + (xy 1.831444 -0.266631) + (xy 1.823496 -0.423705) + (xy 1.810854 -0.574476) + (xy 1.79426 -0.712785) + (xy 1.774457 -0.83247) + (xy 1.752187 -0.927371) + (xy 1.728193 -0.991326) + (xy 1.647243 -1.108396) + (xy 1.555116 -1.187438) + (xy 1.455309 -1.240156) + (xy 1.351316 -1.27825) + (xy 1.287703 -1.294792) + (xy 1.200139 -1.310809) + (xy 1.091444 -1.326168) + (xy 0.96444 -1.340735) + (xy 0.821947 -1.354378) + (xy 0.666784 -1.366964) + (xy 0.501773 -1.378358) + (xy 0.329734 -1.388429) + (xy 0.153487 -1.397042) + (xy -0.024147 -1.404065) + (xy -0.200349 -1.409365) + (xy -0.372297 -1.412808) + (xy -0.537172 -1.414261) + (xy -0.692152 -1.413591) + (xy -0.834418 -1.410665) + (xy -0.961149 -1.40535) + (xy -1.069525 -1.397513) + (xy -1.156726 -1.387019) + (xy -1.21993 -1.373737) + (xy -1.345516 -1.329991) + (xy -1.454722 -1.271669) + (xy -1.540637 -1.192651) + (xy -1.596345 -1.086814) + (xy -1.617465 -1.003212) + (xy -1.638218 -0.889935) + (xy -1.657864 -0.753236) + (xy -1.675662 -0.599369) + (xy -1.690872 -0.434586) + (xy -1.702753 -0.265141) + (xy -1.710564 -0.097288) + (xy -1.713564 0.062721) + (xy -1.711014 0.208632) + (xy -1.702172 0.334191) + (xy -1.686297 0.433147) + (xy -1.641253 0.54468) + (xy -1.567142 0.635444) + (xy -1.469285 0.70656) + (xy -1.353004 0.759151) + (xy -1.223621 0.794339) + (xy -1.132441 0.808371) + (xy -1.018466 0.819043) + (xy -0.884762 0.826528) + (xy -0.734395 0.830999) + (xy -0.57043 0.832627) + (xy -0.422321 0.831912) + (xy -0.268443 0.829393) + (xy -0.110682 0.825182) + (xy 1.169106 2.158844) + (xy 1.045018 2.104872) + (xy 0.944034 2.015788) + (xy 0.846477 1.925223) + (xy 0.752078 1.833293) + (xy 0.660572 1.740116) + (xy 0.571691 1.645809) + (xy 0.485169 1.550489) + (xy 0.400739 1.454275) + (xy 0.318135 1.357283) + (xy 0.23709 1.25963) + (xy 0.157337 1.161434) + (xy 0.078609 1.062812) + (xy -0.037728 1.057823) + (xy -0.153882 1.052202) + (xy -0.226639 1.142115) + (xy -0.30194 1.23216) + (xy -0.380482 1.322365) + (xy -0.462964 1.412763) + (xy -0.55008 1.503382) + (xy -0.642529 1.594254) + (xy -0.741007 1.685409) + (xy -0.846212 1.776878) + (xy -0.958839 1.86869) + (xy -1.041063 1.888842) + (xy -1.117062 1.845165) + (xy -1.134478 1.767147) + (xy -1.092613 1.698473) + (xy -0.97592 1.621911) + (xy -0.86441 1.543824) + (xy -0.757507 1.464274) + (xy -0.654638 1.38332) + (xy -0.555225 1.301022) + (xy -0.458694 1.21744) + (xy -0.364468 1.132635) + (xy -0.271973 1.046666) + (xy -0.456528 1.035735) + (xy -0.635035 1.023421) + (xy -0.805009 1.009848) + (xy -0.963962 0.995135) + (xy -1.109408 0.979404) + (xy -1.238861 0.962778) + (xy -1.349834 0.945378) + (xy -1.43984 0.927324) + (xy -1.506393 0.908739) + (xy -1.604051 0.87214) + (xy -1.699036 0.825883) + (xy -1.789291 0.762545) + (xy -1.872761 0.674702) + (xy -1.947389 0.554928) + (xy -1.971284 0.490816) + (xy -1.993838 0.398524) + (xy -2.014523 0.282658) + (xy -2.032811 0.147823) + (xy -2.048172 -0.001373) + (xy -2.060078 -0.160325) + (xy -2.068001 -0.324427) + (xy -2.071412 -0.489073) + (xy -2.069782 -0.649655) + (xy -2.062583 -0.801569) + (xy -2.049286 -0.940208) + (xy -2.029362 -1.060966) + (xy -2.002283 -1.159236) + (xy -1.959998 -1.243824) + (xy -1.895784 -1.3218) + (xy -1.808612 -1.392864) + (xy -1.697456 -1.456714) + (xy -1.561287 -1.513048) + (xy -1.4976 -1.531524) + (xy -1.413631 -1.549637) + (xy -1.311331 -1.567261) + (xy -1.192649 -1.584275) + (xy -1.059533 -1.600556) + (xy -0.913933 -1.615981) + (xy -0.757799 -1.630426) + (xy -0.593079 -1.64377) + (xy -0.421723 -1.655888) + (xy -0.24568 -1.666659) + (xy -0.334351 -1.733431) + (xy -0.413054 -1.811058) + (xy -0.481322 -1.900038) + (xy -0.53869 -2.000865) + (xy -0.584693 -2.114035) + (xy -0.618866 -2.240045) + (xy -0.495648 -2.202684) + (xy -0.383727 -2.151632) + (xy -0.282647 -2.087445) + (xy -0.191956 -2.010681) + (xy -0.111199 -1.921895) + (xy -0.039921 -1.821643) + (xy 0.022331 -1.710482) + (xy 0.086151 -1.816492) + (xy 0.160102 -1.910215) + (xy 0.244772 -1.990951) + (xy 0.340747 -2.058002) + (xy 0.448616 -2.110667) + (xy 0.568964 -2.148248) + (xy 0.52759 -2.005909) + (xy 0.468596 -1.882673) + (xy 0.392899 -1.777593) + (xy 0.301414 -1.689723) + (xy 0.471195 -1.693663) + (xy 0.636268 -1.69579) + (xy 0.794849 -1.695982) + (xy 0.945151 -1.694116) + (xy 1.08539 -1.690068) + (xy 1.21378 -1.683714) + (xy 1.328535 -1.674932) + (xy 1.427871 -1.663599) + (xy 1.510001 -1.649591) + (xy 1.637156 -1.614832) + (xy 1.754335 -1.565287) + (xy 1.857953 -1.500169) + (xy 1.944421 -1.418693) + (xy 2.010152 -1.320072) + (xy 2.051559 -1.20352) + (xy 2.066886 -1.110585) + (xy 2.077007 -0.996355) + (xy 2.082342 -0.864574) + (xy 2.083315 -0.718985) + (xy 2.080347 -0.563334) + (xy 2.07386 -0.401364) + (xy 2.064276 -0.23682) + (xy 2.052017 -0.073446) + (xy 2.037505 0.085015) + (xy 2.021163 0.234817) + (xy 2.003411 0.372216) + (xy 1.984673 0.493469) + (xy 1.965369 0.594831) + (xy 1.945923 0.672558) + (xy 1.896849 0.779915) + (xy 1.824145 0.865076) + (xy 1.731924 0.931939) + (xy 1.624301 0.984403) + (xy 1.505388 1.02637) + (xy 1.432286 1.042626) + (xy 1.331635 1.055536) + (xy 1.206633 1.065247) + (xy 1.060478 1.071905) + (xy 0.896368 1.075657) + (xy 0.7175 1.07665) + (xy 0.601116 1.075815) + (xy 0.480868 1.07385) + (xy 0.357731 1.070979) + (xy 0.232681 1.067425) + (xy 0.321366 1.153584) + (xy 0.411628 1.239241) + (xy 0.503804 1.324548) + (xy 0.59823 1.409653) + (xy 0.695243 1.494709) + (xy 0.795182 1.579865) + (xy 0.898381 1.665273) + (xy 1.00518 1.751082) + (xy 1.115913 1.837443) + (xy 1.230919 1.924507) + (xy 1.291407 2.003754) + (xy 1.288889 2.080529) + (xy 1.246142 2.13624) + (xy 1.169106 2.158844) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp f6c866c4-e970-44a7-a59d-d3eada09bda2)) + ) + + (footprint "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (layer "B.Cu") + (tstamp 6725f796-8662-493b-b5f3-6466dfbaa71c) + (at 91.1 82.6) + (descr "SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged") + (property "ki_keywords" "Jumper SPDT") + (path "/e0c5c21f-246e-4eb2-8ba7-159ad7993709") + (zone_connect 1) + (attr exclude_from_pos_files) + (net_tie_pad_groups "1,2") + (fp_text reference "JP2" (at 0 1.8) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp d3ee946e-37ac-4fd9-bbed-05d3f2b10090) + ) + (fp_text value "IR source" (at 0 -1.9) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 76f55bbd-2134-455c-adbf-3ca0a3dcc329) + ) + (fp_poly + (pts + (xy -0.9 0.3) + (xy -0.4 0.3) + (xy -0.4 -0.3) + (xy -0.9 -0.3) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp b0004dc1-3113-40fe-8bd4-c0ed5b69eba7)) + (fp_line (start -2.05 -0.3) (end -2.05 0.3) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 315552e2-9982-4c05-aca6-66e5604ef4b1)) + (fp_line (start -1.5 -1.5) (end -0.9 -1.5) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a4397e54-24d2-4368-b5c5-ba3e7289c20c)) + (fp_line (start -1.4 1) (end 1.4 1) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 065f8502-8b2a-4b4d-9b4d-bb635b5a0c19)) + (fp_line (start -1.2 -1.2) (end -1.5 -1.5) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4c66ddf6-5a80-4886-8968-15f121671a2c)) + (fp_line (start -1.2 -1.2) (end -0.9 -1.5) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d49e2a47-f1a0-4e9c-b157-787d2a9a6bb7)) + (fp_line (start 1.4 -1) (end -1.4 -1) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 8d8cebec-320d-4d6b-bfa6-2ff848ec3c03)) + (fp_line (start 2.05 0.3) (end 2.05 -0.3) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp faae7df7-dfaa-487d-b0b4-7729586d970e)) + (fp_arc (start -2.05 -0.3) (mid -1.844975 -0.794975) (end -1.35 -1) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 56c1b9e3-494b-47ac-bb0b-1442330df2e4)) + (fp_arc (start -1.35 1) (mid -1.844975 0.794975) (end -2.05 0.3) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 452c633c-2491-4e27-a331-762712edd2cf)) + (fp_arc (start 1.35 -1) (mid 1.844975 -0.794975) (end 2.05 -0.3) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 2cca9724-a906-439d-adc1-a920e917275b)) + (fp_arc (start 2.05 0.3) (mid 1.844975 0.794975) (end 1.35 1) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp dd3b51cb-8aa9-4b8a-8103-8b312f4559d4)) + (fp_line (start -2.3 1.25) (end -2.3 -1.25) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp dd972d66-fd0c-410c-90cd-29ceb2e2c58a)) + (fp_line (start -2.3 1.25) (end 2.3 1.25) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 28b4f96e-cc50-418a-a0f8-476f9f3d13fc)) + (fp_line (start 2.3 -1.25) (end -2.3 -1.25) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2900e3d0-4a2f-4c49-91a8-5fc2f371b471)) + (fp_line (start 2.3 -1.25) (end 2.3 1.25) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f5004a29-c75b-4eb7-97d8-37404cf48634)) + (pad "1" smd custom (at -1.3 0) (size 1 0.5) (layers "B.Cu" "B.Mask") + (net 21 "Net-(JP2-A)") (pinfunction "A") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_poly + (pts + (xy 0.55 -0.75) + (xy 0 -0.75) + (xy 0 0.75) + (xy 0.55 0.75) + ) + (width 0) (fill yes)) + ) (tstamp 70cccc1a-8824-4d69-9414-8c36da7d80d7)) + (pad "2" smd rect (at 0 0) (size 1 1.5) (layers "B.Cu" "B.Mask") + (net 22 "Net-(JP2-C)") (pinfunction "C") (pintype "passive") (tstamp ad57e6c5-4a80-4f2d-9a6a-5b71ecade450)) + (pad "3" smd custom (at 1.3 0) (size 1 0.5) (layers "B.Cu" "B.Mask") + (net 11 "PRi IR in") (pinfunction "B") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_poly + (pts + (xy 0 -0.75) + (xy -0.55 -0.75) + (xy -0.55 0.75) + (xy 0 0.75) + ) + (width 0) (fill yes)) + ) (tstamp 2134ca3c-d017-4c28-a8f9-776dfbf929b7)) + ) + + (footprint "MY:CONTACT_1" (layer "B.Cu") + (tstamp 718f377c-58b5-452a-bfa2-755a1dac7175) + (at 85.74 113.43 -90) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/4a3fdd6f-108b-4e73-82c9-fb1b5978df55") + (attr through_hole) + (fp_text reference "J17" (at 0 -2.5 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 544ea913-cfd2-4e04-8101-cdebe3b07faf) + ) + (fp_text value "~" (at 0 2.3 90) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 0b6a0311-e25f-49f0-ad53-1263177fa7a8) + ) + (pad "1" smd rect (at -0.1 0 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 81 "Net-(J17-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp a118dc21-f357-4fa1-be9d-c2fe865ee323)) + ) + + (footprint "MY:CONTACT_1" (layer "B.Cu") + (tstamp 91c54b1d-836f-467c-b0a8-e77135d8ed37) + (at 95.3 114.522 90) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/599fa365-a648-4f0b-97fc-5520bf071eb8") + (attr through_hole) + (fp_text reference "J8" (at 0 -2.5 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 201997b5-4722-4ddd-922b-fb9994b982dd) + ) + (fp_text value "~" (at 0 2.3 90) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 5f18c2a3-6cd6-4c7a-9969-94128135ed69) + ) + (pad "1" smd rect (at -0.1 0 90) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 56 "Net-(J5-Pin_35)") (pinfunction "Pin_1") (pintype "passive") (tstamp 44bb9b1c-9c79-444e-af8a-49dcde660712)) + ) + + (footprint "MY:CONTACT_1" (layer "B.Cu") + (tstamp a24cfd22-115e-4721-90df-ff8fcfcb8256) + (at 95.25 112.2 -90) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/aecc20d8-4258-4e2d-8a29-fa833c7e8b5a") + (attr through_hole) + (fp_text reference "J7" (at 0 -2.5 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp b907cd9b-4166-48c8-9473-d11ba64ffab9) + ) + (fp_text value "~" (at 0 2.3 90) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 8e04b19c-9888-4386-b316-b92a92ce48a6) + ) + (pad "1" smd rect (at -0.1 0 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 53 "Net-(J5-Pin_31)") (pinfunction "Pin_1") (pintype "passive") (tstamp f670937c-e735-464a-8bac-7bf60dbb6231)) + ) + + (footprint "MY:CONTACT_1" (layer "B.Cu") + (tstamp a553c4e9-eac8-4767-bf06-bee59d211f3f) + (at 90.91 126) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/824ddcf6-19ef-4a3a-9f14-0e214dde1a8e") + (attr through_hole) + (fp_text reference "J1" (at 0 -2.5) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp dc0ab451-b214-413f-be09-94981c33c486) + ) + (fp_text value "~" (at 0 2.3) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp d95b96a4-efff-4b4b-9d1a-848e05139744) + ) + (pad "1" smd rect (at -0.1 0) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 31 "Net-(J1-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 3f6b0bcc-8515-48a2-bbf9-4ccd6feec80b)) + ) + + (footprint "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (layer "B.Cu") + (tstamp c96e5518-cdd8-401f-a993-3d3992495b04) + (at 91.05 78.9) + (descr "SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged") + (property "ki_keywords" "Jumper SPDT") + (path "/a403513c-21ca-4892-903a-83e01adb76b1") + (zone_connect 1) + (attr exclude_from_pos_files) + (net_tie_pad_groups "1,2") + (fp_text reference "JP1" (at 0 1.8) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 97fc5b5e-7fb0-4b22-abb2-c2763112d51d) + ) + (fp_text value "IR source" (at 0 -1.9) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp b2d4fd37-6e41-4a78-88ed-bd721267edce) + ) + (fp_poly + (pts + (xy -0.9 0.3) + (xy -0.4 0.3) + (xy -0.4 -0.3) + (xy -0.9 -0.3) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp c6346c8a-408d-46f3-9d00-f2d61cbe64b4)) + (fp_line (start -2.05 -0.3) (end -2.05 0.3) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5cb41f20-7d34-4a0d-90eb-812f7393feb0)) + (fp_line (start -1.5 -1.5) (end -0.9 -1.5) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 2d3413b4-863a-4218-84f0-cc577e915880)) + (fp_line (start -1.4 1) (end 1.4 1) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9a280a27-f47a-4caf-909a-2b113e39c824)) + (fp_line (start -1.2 -1.2) (end -1.5 -1.5) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c3a69721-be76-4e0b-963d-664260bad25c)) + (fp_line (start -1.2 -1.2) (end -0.9 -1.5) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp be4c9414-1b78-44f2-bb1a-e8c4ec4ecbef)) + (fp_line (start 1.4 -1) (end -1.4 -1) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3056f86b-0fec-4567-8065-65d001847452)) + (fp_line (start 2.05 0.3) (end 2.05 -0.3) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp cfb55343-3332-41e5-a63b-6ee78e377b4c)) + (fp_arc (start -2.05 -0.3) (mid -1.844975 -0.794975) (end -1.35 -1) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 74b4a8c6-6cea-4d51-a7f1-040dcd9c06b6)) + (fp_arc (start -1.35 1) (mid -1.844975 0.794975) (end -2.05 0.3) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 321f816b-f79e-4a69-9bec-1ac5197a6439)) + (fp_arc (start 1.35 -1) (mid 1.844975 -0.794975) (end 2.05 -0.3) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1e371a56-6373-4ae6-91c4-2b6596469a61)) + (fp_arc (start 2.05 0.3) (mid 1.844975 0.794975) (end 1.35 1) + (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp be04d00e-e000-4417-8b90-ecbb0cc8d76e)) + (fp_line (start -2.3 1.25) (end -2.3 -1.25) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d125ef37-dd3d-4492-becc-688cd83719ab)) + (fp_line (start -2.3 1.25) (end 2.3 1.25) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 50836007-b7c9-4cae-9b0b-ba793ea8dbc1)) + (fp_line (start 2.3 -1.25) (end -2.3 -1.25) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 56f884bd-c18c-44a4-bf45-79ffcfd70994)) + (fp_line (start 2.3 -1.25) (end 2.3 1.25) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 207da975-c4bd-47e4-88c8-7d9ff0348d12)) + (pad "1" smd custom (at -1.3 0) (size 1 0.5) (layers "B.Cu" "B.Mask") + (net 19 "Net-(JP1-A)") (pinfunction "A") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_poly + (pts + (xy 0.55 -0.75) + (xy 0 -0.75) + (xy 0 0.75) + (xy 0.55 0.75) + ) + (width 0) (fill yes)) + ) (tstamp 993908f1-a965-447a-9933-1b30b7bcb5b8)) + (pad "2" smd rect (at 0 0) (size 1 1.5) (layers "B.Cu" "B.Mask") + (net 20 "Net-(JP1-C)") (pinfunction "C") (pintype "passive") (tstamp f023523a-f167-448a-b6c0-b61b88f62b8b)) + (pad "3" smd custom (at 1.3 0) (size 1 0.5) (layers "B.Cu" "B.Mask") + (net 12 "RPi IR out") (pinfunction "B") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_poly + (pts + (xy 0 -0.75) + (xy -0.55 -0.75) + (xy -0.55 0.75) + (xy 0 0.75) + ) + (width 0) (fill yes)) + ) (tstamp 7218ebcd-9e34-4efe-846f-c360708b1abc)) + ) + + (footprint "MY:CONTACT_1" (layer "B.Cu") + (tstamp cf1471fe-b096-4978-aa56-dedb3bdd74be) + (at 85.8 117.6 -90) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/3aba7786-52e5-439b-a294-4d245455706d") + (attr through_hole) + (fp_text reference "J18" (at 0 -2.5 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 49c86443-50f2-4524-b7eb-6695b37e6257) + ) + (fp_text value "~" (at 0 2.3 90) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 188e9c7a-4878-406e-8753-97acef3d6a3e) + ) + (pad "1" smd rect (at -0.1 0 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 82 "Net-(J18-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 799abf27-77c3-40e4-a183-59b9cb3e20e5)) + ) + + (footprint "MY:im_kicad._3mm" (layer "B.Cu") + (tstamp e9cc177f-6cb1-48a7-ace8-9fb979881568) + (at 83.3 101 180) + (descr "Imported from im_kicad.svg") + (tags "svg2mod") + (attr smd) + (fp_text reference "im" (at 0 4.648) (layer "B.SilkS") hide + (effects (font (size 1.524 1.524) (thickness 0.3048)) (justify mirror)) + (tstamp b2acfeaf-2f17-48df-9ad8-3fd0d381376f) + ) + (fp_text value "G***" (at 0 -4.648) (layer "B.SilkS") hide + (effects (font (size 1.524 1.524) (thickness 0.3048)) (justify mirror)) + (tstamp c0bea3d6-40df-4399-8483-7855dd807c9d) + ) + (fp_poly + (pts + (xy -2.3727 1.587064) + (xy -2.47979 1.576915) + (xy -2.583664 1.546395) + (xy -2.681106 1.495401) + (xy -2.768901 1.423826) + (xy -2.849129 1.322397) + (xy -2.902614 1.209106) + (xy -2.929357 1.088716) + (xy -2.929357 0.965988) + (xy -2.902614 0.845685) + (xy -2.849129 0.732571) + (xy -2.768901 0.631407) + (xy -2.667701 0.550913) + (xy -2.5545 0.497251) + (xy -2.4341 0.47042) + (xy -2.311299 0.47042) + (xy -2.190899 0.497251) + (xy -2.077699 0.550913) + (xy -1.976499 0.631407) + (xy -1.896271 0.732571) + (xy -1.842785 0.845685) + (xy -1.816043 0.965988) + (xy -1.816043 1.088716) + (xy -1.842785 1.209106) + (xy -1.896271 1.322397) + (xy -1.976499 1.423826) + (xy -2.064294 1.495401) + (xy -2.161735 1.546395) + (xy -2.265609 1.576915) + (xy -2.3727 1.587064) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp cacf33da-61df-4dc4-aae9-893bc9d4a87b)) + (fp_poly + (pts + (xy -2.9327 -0.337256) + (xy -2.9327 -0.996076) + (xy -2.920792 -1.117655) + (xy -2.886634 -1.230955) + (xy -2.832576 -1.333532) + (xy -2.760967 -1.422941) + (xy -2.674159 -1.496737) + (xy -2.574501 -1.552476) + (xy -2.464342 -1.587711) + (xy -2.346033 -1.6) + (xy -2.227724 -1.587711) + (xy -2.117565 -1.552476) + (xy -2.017907 -1.496737) + (xy -1.931099 -1.422941) + (xy -1.859491 -1.333532) + (xy -1.805433 -1.230955) + (xy -1.771275 -1.117655) + (xy -1.759366 -0.996076) + (xy -1.759366 -0.337256) + (xy -1.771275 -0.215677) + (xy -1.805433 -0.102377) + (xy -1.859491 0.0002) + (xy -1.931099 0.089609) + (xy -2.017907 0.163405) + (xy -2.117565 0.219143) + (xy -2.227724 0.254379) + (xy -2.346033 0.266667) + (xy -2.464342 0.254379) + (xy -2.574501 0.219143) + (xy -2.674159 0.163405) + (xy -2.760967 0.089609) + (xy -2.832576 0.0002) + (xy -2.886634 -0.102377) + (xy -2.920792 -0.215677) + (xy -2.9327 -0.337256) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp af565255-d54e-4aaa-9953-c34680739f25)) + (fp_poly + (pts + (xy -1.386033 0.993699) + (xy -1.386033 -0.993696) + (xy -1.374102 -1.115871) + (xy -1.339891 -1.229673) + (xy -1.285776 -1.332661) + (xy -1.214131 -1.422396) + (xy -1.127329 -1.496438) + (xy -1.027747 -1.552346) + (xy -0.917759 -1.58768) + (xy -0.799738 -1.6) + (xy -0.681473 -1.58768) + (xy -0.5713 -1.552346) + (xy -0.471585 -1.496438) + (xy -0.384696 -1.422396) + (xy -0.312997 -1.332661) + (xy -0.258854 -1.229673) + (xy -0.224633 -1.115871) + (xy -0.2127 -0.993696) + (xy -0.2127 0.993699) + (xy -0.224633 1.115872) + (xy -0.258854 1.229673) + (xy -0.312997 1.332661) + (xy -0.384696 1.422396) + (xy -0.471585 1.496437) + (xy -0.5713 1.552345) + (xy -0.681473 1.58768) + (xy -0.799738 1.6) + (xy -0.917759 1.58768) + (xy -1.027747 1.552345) + (xy -1.127329 1.496437) + (xy -1.214131 1.422396) + (xy -1.285776 1.332661) + (xy -1.339891 1.229673) + (xy -1.374102 1.115872) + (xy -1.386033 0.993699) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 766c093c-1448-4187-803c-e1889dad9360)) + (fp_poly + (pts + (xy 0.213967 0.993699) + (xy 0.213967 -0.993696) + (xy 0.225898 -1.115871) + (xy 0.260108 -1.229673) + (xy 0.314224 -1.332661) + (xy 0.385869 -1.422396) + (xy 0.47267 -1.496438) + (xy 0.572252 -1.552346) + (xy 0.68224 -1.58768) + (xy 0.800261 -1.6) + (xy 0.918527 -1.58768) + (xy 1.0287 -1.552346) + (xy 1.128414 -1.496438) + (xy 1.215304 -1.422396) + (xy 1.287003 -1.332661) + (xy 1.341146 -1.229673) + (xy 1.375367 -1.115871) + (xy 1.3873 -0.993696) + (xy 1.3873 0.993699) + (xy 1.375367 1.115872) + (xy 1.341146 1.229673) + (xy 1.287003 1.332661) + (xy 1.215304 1.422396) + (xy 1.128414 1.496437) + (xy 1.0287 1.552345) + (xy 0.918527 1.58768) + (xy 0.800261 1.6) + (xy 0.68224 1.58768) + (xy 0.572252 1.552345) + (xy 0.47267 1.496437) + (xy 0.385869 1.422396) + (xy 0.314224 1.332661) + (xy 0.260108 1.229673) + (xy 0.225898 1.115872) + (xy 0.213967 0.993699) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 7f9267d7-95d5-4c91-bbc3-8f3b8bb2fca6)) + (fp_poly + (pts + (xy 1.813967 0.993699) + (xy 1.813967 -0.993696) + (xy 1.825898 -1.115871) + (xy 1.860109 -1.229673) + (xy 1.914224 -1.332661) + (xy 1.985869 -1.422396) + (xy 2.07267 -1.496438) + (xy 2.172252 -1.552346) + (xy 2.282241 -1.58768) + (xy 2.400261 -1.6) + (xy 2.518527 -1.58768) + (xy 2.6287 -1.552346) + (xy 2.728414 -1.496438) + (xy 2.815304 -1.422396) + (xy 2.887003 -1.332661) + (xy 2.941146 -1.229673) + (xy 2.975367 -1.115871) + (xy 2.9873 -0.993696) + (xy 2.9873 0.993699) + (xy 2.975367 1.115872) + (xy 2.941146 1.229673) + (xy 2.887003 1.332661) + (xy 2.815304 1.422396) + (xy 2.728414 1.496437) + (xy 2.6287 1.552345) + (xy 2.518527 1.58768) + (xy 2.400261 1.6) + (xy 2.282241 1.58768) + (xy 2.172252 1.552345) + (xy 2.07267 1.496437) + (xy 1.985869 1.422396) + (xy 1.914224 1.332661) + (xy 1.860109 1.229673) + (xy 1.825898 1.115872) + (xy 1.813967 0.993699) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 9b2e0b81-a1f9-49d6-bd6d-44ef91938477)) + ) + + (footprint "MY:CONTACT_1" (layer "B.Cu") + (tstamp fe12b06f-be12-423c-8c71-db0d9f4f63d3) + (at 94.25 126) + (property "Sheetfile" "RF_RX.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/09a5c94e-f094-47b5-a3b1-889070f278d3") + (attr through_hole) + (fp_text reference "J3" (at 0 -2.5) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 8ba284de-2026-4b77-9c4e-4718977065f4) + ) + (fp_text value "~" (at 0 2.3) (layer "B.Fab") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 07abb8d9-dd29-4858-ac91-5ec094316fb0) + ) + (pad "1" smd rect (at -0.1 0) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 33 "Net-(J3-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 63cd0f26-b578-4fdf-885d-ef7388491e18)) + ) + + (gr_arc (start 102.869999 126.238) (mid 101.902866 128.572866) (end 99.568 129.539999) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 0696229d-d1cd-4cc1-98ec-c45b5a635be2)) + (gr_arc (start 72.644001 108) (mid 72.952594 106.607157) (end 73.820616 105.475) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 1549c90d-80de-4f94-9911-84c2cd47f8f5)) + (gr_arc (start 73.822574 103.727178) (mid 74.156796 104.601464) (end 73.820615 105.474999) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 1ff0881e-d150-4518-9178-2964b247141c)) + (gr_line (start 72.644001 126.238) (end 72.644001 108) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 567aa17f-b0dc-4698-9677-6c586a8b9d59)) + (gr_line (start 72.644001 101.2) (end 72.644 67.818) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 637cb51d-fa98-44d6-ba85-cb4d8c45e70c)) + (gr_arc (start 102.525942 105.033431) (mid 102.789122 105.327277) (end 102.869804 105.713411) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 76cd9f70-056c-4cef-9bb1-19febce1f027)) + (gr_arc (start 102.527101 105.031655) (mid 102.36 104.66) (end 102.549804 104.299411) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 803f90a2-afe1-4835-ac3d-635c98e779a7)) + (gr_arc (start 73.825 103.725) (mid 72.956978 102.592843) (end 72.648385 101.2) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 89e6567f-2eb2-488e-aec6-9c02348094ba)) + (gr_line (start 102.869804 105.713411) (end 102.869999 126.238) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 93867243-f827-4214-a5ba-da886630c651)) + (gr_arc (start 99.568 64.516001) (mid 101.902866 65.483134) (end 102.869999 67.818) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 9de055a7-c221-4d73-8a31-dd9e530d3f79)) + (gr_arc (start 72.644001 67.818) (mid 73.611134 65.483134) (end 75.946 64.516001) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a37d4673-fe46-473c-aef6-5f10c2b5b257)) + (gr_arc (start 75.946 129.539999) (mid 73.611134 128.572866) (end 72.644001 126.238) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a5811891-2a98-4a9a-bd3f-20c16d13f5c6)) + (gr_arc (start 102.869999 103.632) (mid 102.798001 104.008536) (end 102.552132 104.302664) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp cb4d1b08-c3c1-4374-9318-f355c54d6a00)) + (gr_line (start 99.568 129.54) (end 75.946 129.539999) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp dc05ed83-da68-48f0-8dcd-26ee7b1a9635)) + (gr_line (start 75.946 64.516) (end 99.568 64.516001) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp e167d18a-39b4-410b-99dc-9957fd263fd2)) + (gr_line (start 102.869999 67.818) (end 102.87 103.632) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f6ce4fb5-a68c-40d0-bcac-41d37d74a1b6)) + + (segment (start 78.474 83.3) (end 78.486 83.312) (width 0.25) (layer "F.Cu") (net 1) (tstamp cdc1c2f1-9fc9-4630-a408-1d4f552a9716)) + (segment (start 75.7 83.3) (end 78.474 83.3) (width 0.25) (layer "F.Cu") (net 1) (tstamp db181199-ce3e-4690-8816-07455724d96d)) + (segment (start 87.076 69.376) (end 87.8 70.1) (width 0.25) (layer "F.Cu") (net 2) (tstamp 0c65eaaf-df93-4d29-8b60-ecd4f6b1894d)) + (segment (start 86.25 113.2) (end 88.86 113.2) (width 0.25) (layer "F.Cu") (net 2) (tstamp 23fe922c-afec-4c54-b7fa-45d29a3bc773)) + (segment (start 88.86 113.2) (end 89.17 113.51) (width 0.25) (layer "F.Cu") (net 2) (tstamp 5f4796d1-feb0-4e0f-9b8c-c337a8c559c7)) + (segment (start 87.29 108.79) (end 89.83 108.79) (width 0.25) (layer "F.Cu") (net 2) (tstamp 78fe39a8-4581-4e7f-9cde-dfcccea59411)) + (segment (start 87.076 67.8) (end 87.076 69.376) (width 0.25) (layer "F.Cu") (net 2) (tstamp dd61b2ad-8145-47a2-b1b8-912f148966ed)) + (segment (start 89.83 108.79) (end 90.08 109.04) (width 0.25) (layer "F.Cu") (net 2) (tstamp f31576b4-9374-4234-a40b-5847d9f36efb)) + (via (at 91.186 87.376) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 019d89ae-4996-42f3-8ffe-b84e4d82bfb5)) + (via (at 95.758 66.04) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 036720db-b58c-45ff-88b4-96196a297cbb)) + (via (at 73.914 75.946) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 043b67c3-2975-4012-8245-09dfd7f3171b)) + (via (at 91.186 86.106) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 06f77aa0-3579-4fa3-bd49-a06f3e056b00)) + (via (at 88.646 87.376) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 077f8031-e24d-46c4-8156-47cf87a22c81)) + (via (at 78.994 99.314) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 0b06c676-4613-4c6a-ac11-d859121b1afc)) + (via (at 85.09 124.106) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 0b910677-7071-454e-bee9-49836f444683)) + (via (at 79 117.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 0d8b851e-d905-4bb8-90d5-60073494b4ad)) + (via (at 87.376 86.106) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 0e885e92-a0cc-4eba-b23a-b67676551667)) + (via (at 93.98 88.06) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 140082c2-ad75-48f9-90ea-8baf9d5da41c)) + (via (at 90.08 109.04) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 14942c76-7a2c-46cd-9f57-bd87d6ef6b46)) + (via (at 73.914 77.216) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1769b1f1-7ffc-418e-b4dc-18f566b8297a)) + (via (at 93.9 122.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 19f83ea5-fc3a-4039-8ebf-94fda8b85547)) + (via (at 91.5 117.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1a0d2bf4-c272-4c6c-978a-1444226911e3)) + (via (at 97.028 66.04) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1c15e390-d0fd-43b6-8b1a-9c13f8df16d5)) + (via (at 89.916 91.186) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1ccffa9c-5182-454d-b9fe-cdf85a5438e0)) + (via (at 83.566 124.106) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1d1833ea-cd08-49af-b4fd-aeae4065e2c4)) + (via (at 78.994 101.854) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1df7dbc8-c395-4f57-bf3c-9be5a139bf11)) + (via (at 93.5 106.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1ed46179-3ead-4e34-84aa-7bba6f207986)) + (via (at 78.994 100.584) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 2235d6f3-c52c-40a5-87f9-09409f653fa4)) + (via (at 93.98 90.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 25e58b68-43d5-435f-905e-aa59afa92dbe)) + (via (at 93.98 89.33) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 26add538-3096-4996-9ae0-ec1ceb92fd79)) + (via (at 88.646 89.916) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 29102086-c1cf-4d7b-9fae-555804fc9006)) + (via (at 73.914 73.406) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 2b8ff066-4312-40b7-bb0a-a8b76a8c5edc)) + (via (at 93.218 66.04) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 2cc97488-c10a-4b9d-962c-8a56519dc8cf)) + (via (at 94.234 100.584) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 322f0510-20f5-401f-bdd6-e190c0f9b193)) + (via (at 91.186 88.646) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 32e0e61a-7d84-4d4d-945c-d8d0599f6511)) + (via (at 79 109.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 3739ea55-8cfb-4577-9b90-cbd352325916)) + (via (at 80.55 88.35) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 3d4fe957-29c6-4032-b519-80a7b5346e20)) + (via (at 78.74 66.04) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 3fc49037-864d-4ee3-a554-fc6edf388a36)) + (via (at 83.566 125.506) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 42aee8d9-cc2f-419b-82b9-8920d7fca012)) + (via (at 88.519 78.74) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 42d46dd5-3673-4583-a705-5f14ad76743a)) + (via (at 89.17 113.51) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 4354d5c1-d1f7-4947-9cd6-c484639d7a45)) + (via (at 84 118.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 4526c186-a91e-41d9-9ea1-cc5228d3b087)) + (via (at 73.914 79.756) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 48005172-e851-448b-9c03-cd038da19367)) + (via (at 87.376 100.584) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 49079517-8df9-4257-888a-b926359dfe12)) + (via (at 94.488 66.04) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 4d24b4ea-994e-4a0b-9a46-988964b413f3)) + (via (at 77.73 113.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 4d4a5517-6558-4712-b3d6-9c8352ee0bd6)) + (via (at 87.376 88.646) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 4f206dad-8fff-41a1-ab7d-5c9ab569b59c)) + (via (at 87.376 87.376) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 5026b6cb-349d-4245-8d8b-bcdf37e204ae)) + (via (at 89.916 84.836) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 5c8ed1da-3ae9-4d2f-87c7-589fc6daaa59)) + (via (at 78.994 96.774) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 6272ec6a-fbb0-47c2-95c0-6ad49acc4a57)) + (via (at 96.52 69.342) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 69c1ab36-6373-409e-9df4-9575f047dc87)) + (via (at 78.994 89.916) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 6bf56470-c476-45ba-aea9-1e935d3a5f60)) + (via (at 91.186 89.916) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 742d096b-707f-4fa0-b658-aa28c86bfe8f)) + (via (at 88.646 86.106) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 74a22bad-1365-420b-a01b-2bb67bb6874c)) + (via (at 83.1 113.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 75512903-8aca-465e-a3c0-05ce11c8491d)) + (via (at 75.19 113.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 772d5840-d67a-48eb-aa90-729966c51939)) + (via (at 95.2 108.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 782118c3-4009-41f6-85e0-421b9b7aeeb2)) + (via (at 88.646 88.646) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 7c074232-5924-4f65-a72c-938b260baa5a)) + (via (at 101.62 70) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 7c2aa827-8018-41c1-b5c6-23b76d63f5d1)) + (via (at 87.376 99.314) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 8134b21e-a7b1-4db5-8e2f-9f71400fa70a)) + (via (at 94.234 99.314) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 8485456e-bbff-4c39-b87e-c5a71ec8c16e)) + (via (at 78.994 88.35) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 84c7b3af-4984-4592-84d3-894b8e5d5b0b)) + (via (at 95 105.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 8ae9cac0-c81f-4f6b-af5e-d98945c2f101)) + (via (at 87.8 70.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 928bc6ce-be61-4394-bc1c-4df96db27731)) + (via (at 101.092 123.444) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 95b341d1-b031-4666-81f1-295c57799c35)) + (via (at 73.914 70.866) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 99a06097-9f98-4a23-a5f3-0c9ec11f0ae5)) + (via (at 88.646 84.836) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp a570463a-3548-4f08-9c4c-190742c266ff)) + (via (at 73.9 124) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp af25ef95-1e1d-43c8-b66f-c31ac283e45c)) + (via (at 85.09 125.506) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp b20ca5b3-5e98-4733-8b69-cc3c63a56f34)) + (via (at 79 113.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp b4c74d11-1d70-4ac4-b8e2-13690d6dda91)) + (via (at 73.914 74.676) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp b68591b6-8921-4313-8036-283d10484ec6)) + (via (at 94.234 98.044) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp b88ef312-1c8b-4a86-a9f5-7240fa2bed88)) + (via (at 73.914 72.136) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp b8c1fc4e-5306-4cc7-84c3-bfd3968736da)) + (via (at 92.456 67.818) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp b9336bd7-94ac-4d90-9c12-548a61e8d75a)) + (via (at 89.916 88.646) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp bf6ec2c2-94ce-49f0-b0dc-4df736d4f59b)) + (via (at 96.8 107.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp c22993bd-f80b-4f93-8986-c3103b80b5c1)) + (via (at 81.3 92.55) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp c597cba1-de81-4849-8bab-b879e895100f)) + (via (at 78.9 124) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp c5eb4da8-a269-4594-ba6b-fa75630c09bf)) + (via (at 89.916 87.376) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp d24f6eb4-91db-4a0f-b7be-b76cbca61851)) + (via (at 77.73 117.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp d76e81b6-6837-402d-be9d-9f469b2b4e18)) + (via (at 94.9 85.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp d8785650-1cb0-4693-9858-f87ac94c4d87)) + (via (at 78.994 103.124) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp da293ba7-98ec-4f0f-84c2-4f7353221f42)) + (via (at 89.916 86.106) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp dc039040-43b1-42ff-a044-8ce81f286385)) + (via (at 89.916 89.916) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp e112c042-676b-4d25-8a3f-17e4735bbad5)) + (via (at 75.19 109.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp e5bb344c-ddf9-49b4-b6c0-33583bd725ba)) + (via (at 76.46 113.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp e6cfed83-e5f0-4f22-85d6-c49fb7fb3218)) + (via (at 77.73 109.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp ed681e46-f980-4dc2-b882-b9057978094d)) + (via (at 73.914 78.486) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp eda86136-bebc-4a14-aab9-2b0d1ee80455)) + (via (at 88.392 125.45) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp f15bcb7b-e1ff-4c8c-a2a0-fcac94a2f3c2)) + (via (at 91.186 91.186) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp f3866b2b-74ac-4611-8ead-0587320d45a1)) + (via (at 88.392 124.05) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp f4a1bcb0-7686-4081-82da-241e3ddcf33c)) + (via (at 78.994 98.044) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp f584b63d-ad75-4930-84f3-24ff31d1cb09)) + (via (at 76.46 109.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp f58c2c5a-5030-4f2a-8298-7362e2d1a9ad)) + (via (at 83.4 109.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp f5ec657a-1cf9-43f4-b9a4-11237343604e)) + (via (at 91.186 84.836) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp f72bcc3b-d118-4bb6-9482-9ecd615f6073)) + (segment (start 90.1 120.0125) (end 89.8225 120.0125) (width 0.25) (layer "F.Cu") (net 3) (tstamp 6b1dfb0c-c467-4019-8d1d-29a01b899457)) + (segment (start 90.1 120.0125) (end 89.7625 120.0125) (width 0.25) (layer "F.Cu") (net 3) (tstamp c3144282-1e19-4075-9694-d2974a952dce)) + (segment (start 79.076 120.25) (end 79.1 120.274) (width 0.25) (layer "F.Cu") (net 3) (tstamp c90f75a4-3bcb-4997-8196-5ab94cff7253)) + (segment (start 75.1 120.25) (end 75.1 119.9) (width 0.25) (layer "F.Cu") (net 3) (tstamp d5a3b195-ef42-469d-aa7a-75ada177b7a8)) + (segment (start 75.1 120.25) (end 79.076 120.25) (width 0.25) (layer "F.Cu") (net 3) (tstamp f5f33e35-0b24-4eab-a036-b4b6f46a5489)) + (segment (start 75.1 119.9) (end 76.1 118.9) (width 0.25) (layer "F.Cu") (net 3) (tstamp fadebcfb-9aaf-46b8-8291-83c4806739e1)) + (segment (start 89.8225 120.0125) (end 88.73 118.92) (width 0.25) (layer "F.Cu") (net 3) (tstamp fc26aa93-aed7-4e9b-829f-4739604e5634)) + (via (at 76.1 118.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 74f41e5f-514f-4f63-bd32-ad2dcd9af8d4)) + (via (at 88.73 118.92) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp f5c3a125-33e4-48e5-a824-3f8c4d43280b)) + (segment (start 88.73 118.92) (end 76.12 118.92) (width 0.25) (layer "B.Cu") (net 3) (tstamp b19d8b91-4a1b-4185-ba34-110c85c307ec)) + (segment (start 76.12 118.92) (end 76.1 118.9) (width 0.25) (layer "B.Cu") (net 3) (tstamp bb60f996-3055-41c5-b1ff-22710b4a39fd)) + (segment (start 92.604 125.532) (end 93.132 125.532) (width 0.25) (layer "F.Cu") (net 4) (tstamp 240bfb8d-4a5e-4e14-b971-22602e810387)) + (segment (start 90.12 123.532) (end 90.12 125.616) (width 0.25) (layer "F.Cu") (net 4) (tstamp 373dc125-3e1a-41b6-851b-482fa724ae30)) + (segment (start 93.132 125.532) (end 95.0125 127.4125) (width 0.25) (layer "F.Cu") (net 4) (tstamp 58d26458-1128-44fe-91fd-bd9496dc5224)) + (segment (start 90.104 125.632) (end 92.504 125.632) (width 0.25) (layer "F.Cu") (net 4) (tstamp 617bc7a7-8b87-495f-9546-a3d9a0dbfbe1)) + (segment (start 90.12 125.616) (end 90.104 125.632) (width 0.25) (layer "F.Cu") (net 4) (tstamp d29b11ff-7bdd-4488-bf31-40792d9c1e8e)) + (segment (start 95.0125 127.4125) (end 95.2 127.4125) (width 0.25) (layer "F.Cu") (net 4) (tstamp d5c6e401-9351-4330-b738-145e7ad3aba0)) + (segment (start 92.504 125.632) (end 92.604 125.532) (width 0.25) (layer "F.Cu") (net 4) (tstamp fad233de-faa8-424f-8cd3-a5a122f246f3)) + (segment (start 90.551 73.249) (end 90.551 72.201) (width 0.5) (layer "F.Cu") (net 5) (tstamp 17a7c4dc-2f5f-428d-ae9d-ff48297c50f7)) + (segment (start 80.763 77.963) (end 81.4 78.6) (width 0.5) (layer "F.Cu") (net 5) (tstamp 1e6bbedd-b1a7-493e-9235-2d4b4a5d103a)) + (segment (start 97.858 72.942) (end 96.2 74.6) (width 0.5) (layer "F.Cu") (net 5) (tstamp 2b08524d-142c-47aa-afb9-52198d97cd37)) + (segment (start 92.3 70.3) (end 90.9 68.9) (width 0.5) (layer "F.Cu") (net 5) (tstamp 35934bbd-6285-497c-9f16-e5addf72655e)) + (segment (start 96.2 74.6) (end 96.2 76.8) (width 0.5) (layer "F.Cu") (net 5) (tstamp 406565da-82e6-428e-b2e8-9a07922a47ac)) + (segment (start 95.5 77.5) (end 93 77.5) (width 0.5) (layer "F.Cu") (net 5) (tstamp 41a715b1-ae32-4782-98b6-f9301ac4892c)) + (segment (start 98.044 72.942) (end 97.858 72.942) (width 0.5) (layer "F.Cu") (net 5) (tstamp 458ec530-88e1-487d-9592-477615f5e04d)) + (segment (start 86.769 74.775) (end 81.781 74.775) (width 0.5) (layer "F.Cu") (net 5) (tstamp 55cb3966-67ad-491c-a100-5a86e72f1643)) + (segment (start 89.632 74.168) (end 87.376 74.168) (width 0.5) (layer "F.Cu") (net 5) (tstamp 6653f7aa-5b2c-4d53-b25c-37fffbdd0b19)) + (segment (start 90.551 73.249) (end 89.632 74.168) (width 0.5) (layer "F.Cu") (net 5) (tstamp 74f597d3-1bf4-4ad7-af5c-e7d7b4f5ee62)) + (segment (start 96.2 76.8) (end 95.5 77.5) (width 0.5) (layer "F.Cu") (net 5) (tstamp 75aca1b5-5601-4cdf-b271-edd1400167a4)) + (segment (start 81.781 74.775) (end 78.593 77.963) (width 0.5) (layer "F.Cu") (net 5) (tstamp 95931a94-ac68-4140-b445-bd19fe8b5c10)) + (segment (start 81.3875 80) (end 81.3875 82.7) (width 0.5) (layer "F.Cu") (net 5) (tstamp 984618d6-7a64-4a1d-8e15-02072ff88196)) + (segment (start 78.593 77.963) (end 80.763 77.963) (width 0.5) (layer "F.Cu") (net 5) (tstamp b79f7cbf-51a5-492c-9216-a2516442242a)) + (segment (start 81.4 78.6) (end 81.3875 78.6125) (width 0.5) (layer "F.Cu") (net 5) (tstamp bc266ef9-4ba2-41f5-bfeb-5e1fbc11f169)) + (segment (start 90.551 68.999) (end 90.9 68.65) (width 0.5) (layer "F.Cu") (net 5) (tstamp bdf932ce-edee-4392-b9f7-a1ed119f6527)) + (segment (start 81.3875 78.6125) (end 81.3875 80) (width 0.5) (layer "F.Cu") (net 5) (tstamp cd225436-eeba-49ef-81e2-cc4255733711)) + (segment (start 90.551 72.201) (end 90.551 68.999) (width 0.5) (layer "F.Cu") (net 5) (tstamp cdfc1703-5a79-4b6b-8756-5d4a96721f9b)) + (segment (start 87.376 74.168) (end 86.769 74.775) (width 0.5) (layer "F.Cu") (net 5) (tstamp d35cf369-bf65-455e-9163-b5c8f746302d)) + (segment (start 93 77.5) (end 92.3 76.8) (width 0.5) (layer "F.Cu") (net 5) (tstamp d843320c-4bae-4825-bb6c-54663000acf4)) + (segment (start 92.3 76.8) (end 92.3 70.3) (width 0.5) (layer "F.Cu") (net 5) (tstamp fa7d1110-2467-4390-a578-f310afa9420e)) + (segment (start 74.556 82) (end 78.593 77.963) (width 0.5) (layer "B.Cu") (net 5) (tstamp 0d914029-55be-4491-806e-0dbeebb6b96c)) + (segment (start 76.454 100.838) (end 74.55 98.934) (width 0.5) (layer "B.Cu") (net 5) (tstamp 10d1693e-c3f4-43ab-8ae8-85efa50ce7ce)) + (segment (start 74.55 82) (end 74.556 82) (width 0.5) (layer "B.Cu") (net 5) (tstamp 35a0cbc6-c1ae-4f6b-80fd-40cd6edf232d)) + (segment (start 74.55 98.934) (end 74.55 82) (width 0.5) (layer "B.Cu") (net 5) (tstamp 5adcccb5-c5d1-439d-abdc-0f2fd9c1f8c0)) + (segment (start 77.47 86.106) (end 79.9565 86.106) (width 0.25) (layer "F.Cu") (net 6) (tstamp 1f8283e7-ad37-4c7d-aba2-b105b7a32246)) + (segment (start 79.9565 86.106) (end 79.9625 86.1) (width 0.25) (layer "F.Cu") (net 6) (tstamp 405da088-39a8-453e-9daf-7a22146bd0df)) + (segment (start 75.645 88.245) (end 76.5 89.1) (width 0.25) (layer "F.Cu") (net 7) (tstamp 255b9092-9f42-43df-8f6e-f58c6b17db18)) + (segment (start 75.645 86.106) (end 75.645 88.245) (width 0.25) (layer "F.Cu") (net 7) (tstamp 47c65f9d-440b-47b6-bb0c-9bf6adec3d68)) + (segment (start 80.67 123.744) (end 79.1 122.174) (width 0.25) (layer "F.Cu") (net 8) (tstamp 114c39cd-a79a-49fa-888e-a635c813ea25)) + (segment (start 80.81 107.061) (end 80.81 111.39) (width 0.25) (layer "F.Cu") (net 8) (tstamp 6374dd17-d235-4f28-afda-acaa77f1fae6)) + (segment (start 80.8 120.474) (end 79.1 122.174) (width 0.25) (layer "F.Cu") (net 8) (tstamp 72ea42b1-0394-48f6-9507-ca69ce690f8a)) + (segment (start 80.81 111.39) (end 80.8 111.4) (width 0.25) (layer "F.Cu") (net 8) (tstamp 79d77128-6610-48ec-a004-359ed0d37d62)) + (segment (start 80.8 115.8) (end 80.8 120.474) (width 0.25) (layer "F.Cu") (net 8) (tstamp 9c28c657-4726-4a11-8721-0a55a6cacbd3)) + (segment (start 80.67 125.656) (end 80.67 123.744) (width 0.25) (layer "F.Cu") (net 8) (tstamp baf7c398-cd07-4272-a9c6-b315576ca020)) + (segment (start 80.8 115.7) (end 80.8 111.4) (width 0.25) (layer "F.Cu") (net 8) (tstamp f0884821-7eac-4fe5-8437-34e9c15caade)) + (segment (start 87.122 120.142) (end 88.63 120.142) (width 0.25) (layer "F.Cu") (net 9) (tstamp 0782edc2-4f81-4a9d-832f-30ca4a6c330f)) + (segment (start 82.07 117.27) (end 84.942 120.142) (width 0.25) (layer "F.Cu") (net 9) (tstamp 16a700f3-6924-42b4-b23a-54f20dbd308c)) + (segment (start 82.08 111.39) (end 82.07 111.4) (width 0.25) (layer "F.Cu") (net 9) (tstamp 34c0aa0b-1fb9-491b-ad7d-c00e36c8aa64)) + (segment (start 82.07 111.4) (end 82.07 115.7) (width 0.25) (layer "F.Cu") (net 9) (tstamp 36995d92-a318-4b87-9bb5-e2fd3041a238)) + (segment (start 82.07 115.7) (end 82.07 117.27) (width 0.25) (layer "F.Cu") (net 9) (tstamp 9771c4c3-0f4a-40fe-9a94-540e2eebaf3d)) + (segment (start 84.942 120.142) (end 87.122 120.142) (width 0.25) (layer "F.Cu") (net 9) (tstamp 9b0c6dcb-c5fc-40aa-9cba-a2b8569c3f68)) + (segment (start 88.63 120.142) (end 90.12 121.632) (width 0.25) (layer "F.Cu") (net 9) (tstamp d3ae04d4-eac3-4a40-bd15-8f89773c4b4d)) + (segment (start 82.08 107.061) (end 82.08 111.39) (width 0.25) (layer "F.Cu") (net 9) (tstamp eddd205b-1aff-4a5e-87df-eaf06f41a8da)) + (segment (start 82.931 73.431) (end 83.35 73.85) (width 0.25) (layer "F.Cu") (net 10) (tstamp 14c3ffd0-18df-4247-99e6-a45f53bdf178)) + (segment (start 93.775 79.725) (end 95.1 78.4) (width 0.25) (layer "F.Cu") (net 10) (tstamp 1eac0872-7d09-479f-9150-528cd628e497)) + (segment (start 93.775 79.8) (end 93.775 79.725) (width 0.25) (layer "F.Cu") (net 10) (tstamp 3f7997b4-e04a-497b-96bd-af621854367b)) + (segment (start 82.931 72.201) (end 82.931 73.431) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5d749565-db31-423e-a164-cae2690ea585)) + (segment (start 82.931 72.201) (end 82.931 72.669) (width 0.25) (layer "F.Cu") (net 10) (tstamp 63561129-0fa3-49f6-a427-34c4a3436faf)) + (segment (start 82.931 72.669) (end 80.177 75.423) (width 0.25) (layer "F.Cu") (net 10) (tstamp 6ee054fd-752e-42d5-82d5-c012acc0a8f8)) + (segment (start 80.177 75.423) (end 78.593 75.423) (width 0.25) (layer "F.Cu") (net 10) (tstamp 931e6d7e-4354-4eab-83c1-245e7e18547c)) + (via (at 83.35 73.85) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 10) (tstamp 3f3171e9-8f00-45a2-bae8-2c2eb090d8bb)) + (via (at 95.1 78.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 10) (tstamp e2e963ed-6988-4238-8355-c9d4d9f8c235)) + (segment (start 94.874695 78.4) (end 88.737695 72.263) (width 0.25) (layer "B.Cu") (net 10) (tstamp 0168cc85-7358-4fc7-b800-8d7b6515d67e)) + (segment (start 95.1 78.4) (end 94.874695 78.4) (width 0.25) (layer "B.Cu") (net 10) (tstamp 088146d8-b87b-4385-abb7-d1e9d1f2a32e)) + (segment (start 88.737695 72.263) (end 84.937 72.263) (width 0.25) (layer "B.Cu") (net 10) (tstamp b8367a7c-7b36-4dea-a1f3-75f843d6099c)) + (segment (start 84.937 72.263) (end 83.35 73.85) (width 0.25) (layer "B.Cu") (net 10) (tstamp e911d3ae-56f0-420d-8c40-053b6990aa03)) + (segment (start 99.314 92.456) (end 99.314 97.072) (width 0.25) (layer "F.Cu") (net 11) (tstamp 689b3035-54c0-4057-a5f6-9e8d5187a5ec)) + (segment (start 93.6 83.8) (end 93.6 85.7) (width 0.25) (layer "F.Cu") (net 11) (tstamp 78899203-f2e7-45a8-96ae-e2aeb2fa4a76)) + (segment (start 99.314 97.072) (end 100.584 98.342) (width 0.25) (layer "F.Cu") (net 11) (tstamp 7e872d0d-6c30-4997-997b-724c5aa94db8)) + (segment (start 95.25 90.424) (end 96.774 91.948) (width 0.25) (layer "F.Cu") (net 11) (tstamp 830d0250-18e8-4707-b406-2f67e0cd5002)) + (segment (start 98.806 91.948) (end 99.314 92.456) (width 0.25) (layer "F.Cu") (net 11) (tstamp 863ea01e-9def-416d-9d53-5db8a7321557)) + (segment (start 96.774 91.948) (end 98.806 91.948) (width 0.25) (layer "F.Cu") (net 11) (tstamp ab8fd31f-a436-45f1-b00d-77c0bed51a95)) + (segment (start 95.25 87.35) (end 95.25 90.424) (width 0.25) (layer "F.Cu") (net 11) (tstamp bafadf6e-7b15-4145-8c74-e4f6b7ad4242)) + (segment (start 93.6 85.7) (end 95.25 87.35) (width 0.25) (layer "F.Cu") (net 11) (tstamp eac2c19e-1bf6-404c-a087-b9b8cc4c2652)) + (via (at 93.6 83.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 11) (tstamp 9267631a-dbeb-49cb-b35c-fe1d917b04a1)) + (segment (start 92.4 82.6) (end 93.6 83.8) (width 0.25) (layer "B.Cu") (net 11) (tstamp 5a8f9645-5b54-4fd5-9f62-4ba12b81cde8)) + (segment (start 92.7 91.766) (end 96.35 95.416) (width 0.25) (layer "F.Cu") (net 12) (tstamp 1da4fc8f-db80-4c50-ad8f-65a57efd7768)) + (segment (start 92.7 84.7) (end 92.7 91.766) (width 0.25) (layer "F.Cu") (net 12) (tstamp 390ea264-6962-41c0-bb89-260d6a1be5ec)) + (segment (start 96.35 99.188) (end 98.044 100.882) (width 0.25) (layer "F.Cu") (net 12) (tstamp 434d9939-e336-4ec3-9aa3-3ae861f955fb)) + (segment (start 96.35 95.416) (end 96.35 99.188) (width 0.25) (layer "F.Cu") (net 12) (tstamp a9ed7e90-3cda-42cb-abb9-f713985a9fa2)) + (via (at 92.7 84.7) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 12) (tstamp a9c1923e-49d5-48b4-b638-ebe1a62e3e21)) + (segment (start 92.7 84.7) (end 93.8 84.7) (width 0.25) (layer "B.Cu") (net 12) (tstamp 156e7002-8a65-4c7b-83ec-674197a3871a)) + (segment (start 92.35 79.95) (end 92.35 78.9) (width 0.25) (layer "B.Cu") (net 12) (tstamp 96f4fa0d-fb40-494e-8f00-890f40ec49df)) + (segment (start 94.4 82) (end 92.35 79.95) (width 0.25) (layer "B.Cu") (net 12) (tstamp b9e1c23a-522b-41cf-9e58-8eca74b48a6f)) + (segment (start 93.8 84.7) (end 94.4 84.1) (width 0.25) (layer "B.Cu") (net 12) (tstamp bf29fd0d-b6a5-4fa3-a190-cd675f6ca49b)) + (segment (start 94.4 84.1) (end 94.4 82) (width 0.25) (layer "B.Cu") (net 12) (tstamp efe86c33-f664-4f51-80d6-372c10c24f19)) + (segment (start 82.9575 66.8625) (end 82.959 66.864) (width 0.25) (layer "F.Cu") (net 13) (tstamp 1ddf7e03-a56c-4c13-9d04-dae1f76ed6f6)) + (segment (start 80.8 66.8625) (end 82.9575 66.8625) (width 0.25) (layer "F.Cu") (net 13) (tstamp fb96546c-e4a4-4a6c-8b50-a689f6e48269)) + (segment (start 85.35 112.4) (end 87.42 112.4) (width 0.25) (layer "F.Cu") (net 15) (tstamp 04d98642-3f55-47f6-8c27-e3f1a7257c9f)) + (segment (start 84.55 113.2) (end 85.35 112.4) (width 0.25) (layer "F.Cu") (net 15) (tstamp 32f2ecaa-7e3c-4e2b-b4f8-59a1506848c4)) + (segment (start 87.42 112.4) (end 88.42 111.4) (width 0.25) (layer "F.Cu") (net 15) (tstamp df7f1f2a-ed86-47b7-8f07-6517bbf0d528)) + (segment (start 81.649 77.151) (end 81.6 77.2) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3b5ef52d-f3d9-4a53-8bb8-1a86a82c3732)) + (segment (start 82.931 77.151) (end 81.649 77.151) (width 0.25) (layer "F.Cu") (net 16) (tstamp 61ad9d26-47cf-4b7b-8953-42b4c6eceafa)) + (segment (start 75.7 78.316) (end 76.053 77.963) (width 0.25) (layer "F.Cu") (net 16) (tstamp 81c22c91-7c5d-4362-8be7-ac778177df70)) + (segment (start 75.7 81.475) (end 75.7 78.316) (width 0.25) (layer "F.Cu") (net 16) (tstamp f6090fe9-c6dd-4b47-99c6-615bddeff3db)) + (via (at 81.6 77.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 16) (tstamp 6509ddcd-bc09-411d-a99f-129442964b0c)) + (segment (start 77.308 76.708) (end 81.108 76.708) (width 0.25) (layer "B.Cu") (net 16) (tstamp 3bb2def8-4ab3-4ce6-a99d-489d58d3bcf0)) + (segment (start 76.053 77.963) (end 77.308 76.708) (width 0.25) (layer "B.Cu") (net 16) (tstamp 4c064b15-4e70-46d1-b5ab-2f5abb209417)) + (segment (start 81.108 76.708) (end 81.6 77.2) (width 0.25) (layer "B.Cu") (net 16) (tstamp cbe257ed-a0b2-4538-9205-c437412fd120)) + (segment (start 81.5 70.1) (end 82.911 68.689) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0e5612db-075a-403b-898b-865850f7ee1d)) + (segment (start 77.343 74.133) (end 77.343 72.009) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4b2677dd-7c53-4a90-af22-52189728c16c)) + (segment (start 79.252 70.1) (end 81.5 70.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 772399bd-0266-48ee-aaf3-5e0327aac7e4)) + (segment (start 76.053 75.423) (end 77.343 74.133) (width 0.25) (layer "F.Cu") (net 17) (tstamp 866fe37b-f346-4e05-b64e-06f26fc77941)) + (segment (start 82.911 68.689) (end 82.959 68.689) (width 0.25) (layer "F.Cu") (net 17) (tstamp 888386dc-a3b3-46d7-ac12-b96a73df35f8)) + (segment (start 77.343 72.009) (end 79.252 70.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8937914b-332f-4e73-b401-aac6f448fa30)) + (segment (start 85.471 71.201) (end 82.959 68.689) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9fcc6369-10c6-44ca-985f-d02d13c6af3e)) + (segment (start 85.471 72.201) (end 85.471 71.201) (width 0.25) (layer "F.Cu") (net 17) (tstamp a8cd7cbd-ba9e-43a6-8a42-69ca54357fb4)) + (segment (start 86.741 72.201) (end 86.741 73.334) (width 0.25) (layer "F.Cu") (net 18) (tstamp 1982d947-f3fd-4597-ab44-476d0bc05d58)) + (segment (start 86.741 73.334) (end 86.2 73.875) (width 0.25) (layer "F.Cu") (net 18) (tstamp 268e98cd-4e2e-4790-8bf2-806d7ce57d77)) + (segment (start 83.2125 80) (end 83.2125 79.6125) (width 0.25) (layer "F.Cu") (net 18) (tstamp 3a9326a2-eb85-4e3c-8663-a2eed60124b7)) + (segment (start 89.19 94.831) (end 89.19 102.781) (width 0.25) (layer "F.Cu") (net 18) (tstamp 6027b716-8e2c-4178-8b2d-b80cc05f2dbe)) + (segment (start 89.2 93.15) (end 89.2 94.821) (width 0.25) (layer "F.Cu") (net 18) (tstamp 710525e9-7c03-4a94-9d63-4e7ccff729e1)) + (segment (start 89.2 94.821) (end 89.19 94.831) (width 0.25) (layer "F.Cu") (net 18) (tstamp 9c43e76d-a351-4833-98a7-2e9e21c8c7bf)) + (segment (start 83.2125 79.6125) (end 82.35 78.75) (width 0.25) (layer "F.Cu") (net 18) (tstamp d33e9ab8-29a0-487a-bba1-f4d21684934c)) + (via (at 86.2 73.875) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 18) (tstamp 649f46ea-56bb-45fc-a91f-80d0c9ad23bc)) + (via (at 82.35 78.75) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 18) (tstamp 7277849a-7a44-4cb2-9a0d-8407dbc6ba92)) + (via (at 89.2 93.15) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 18) (tstamp e58c987b-2ce8-452d-8080-e6ca746cef57)) + (segment (start 76.053 72.883) (end 77.338 74.168) (width 0.25) (layer "B.Cu") (net 18) (tstamp 225e8542-d550-4b8e-9109-8376b4d200cb)) + (segment (start 89.2 93.15) (end 85.075 89.025) (width 0.25) (layer "B.Cu") (net 18) (tstamp 2500c98f-5b40-429b-a46d-6fb8edaa4661)) + (segment (start 85.075 89.025) (end 85.075 84.425) (width 0.25) (layer "B.Cu") (net 18) (tstamp 4222b64b-9bc6-43a5-807b-24f0c756f3c0)) + (segment (start 81.33 74.168) (end 82.6 75.438) (width 0.25) (layer "B.Cu") (net 18) (tstamp 4fe40287-494c-4f38-b796-0c023b72e722)) + (segment (start 86.2 73.875) (end 85.3 74.775) (width 0.25) (layer "B.Cu") (net 18) (tstamp 5d335cf7-c491-41c7-bf4b-0e2161c2e23e)) + (segment (start 85.075 84.425) (end 82.35 81.7) (width 0.25) (layer "B.Cu") (net 18) (tstamp 6726debf-59de-4a3d-8140-9d71c569f04b)) + (segment (start 82.35 81.7) (end 82.35 78.75) (width 0.25) (layer "B.Cu") (net 18) (tstamp 89e252ca-aac8-4207-bca5-9a4496c84146)) + (segment (start 83.263 74.775) (end 82.6 75.438) (width 0.25) (layer "B.Cu") (net 18) (tstamp bc93a0c5-2c05-4fb5-9894-efdb5a8284e2)) + (segment (start 77.338 74.168) (end 81.33 74.168) (width 0.25) (layer "B.Cu") (net 18) (tstamp e2ca0f59-c713-42ab-b41c-6ec6d0220ff6)) + (segment (start 82.6 75.438) (end 82.6 78.5) (width 0.25) (layer "B.Cu") (net 18) (tstamp ed15026e-f6fb-4e49-b3fb-dc7e683c3527)) + (segment (start 85.3 74.775) (end 83.263 74.775) (width 0.25) (layer "B.Cu") (net 18) (tstamp f2178b42-a2fe-4a28-8ec1-8032a9048e2a)) + (segment (start 82.6 78.5) (end 82.35 78.75) (width 0.25) (layer "B.Cu") (net 18) (tstamp fd79f91c-5291-41ef-9139-34a0db7bb15c)) + (segment (start 86.741 77.151) (end 86.741 76.109) (width 0.25) (layer "F.Cu") (net 19) (tstamp 3891aca5-a2de-423d-b0f2-36e1ab848952)) + (segment (start 86.741 76.109) (end 87.3 75.55) (width 0.25) (layer "F.Cu") (net 19) (tstamp cfe797f6-39d6-4e2d-acf3-d30a947934d7)) + (via (at 87.3 75.692) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 19) (tstamp f73d5c7b-3abc-46e3-9a64-941399511efb)) + (segment (start 87.3 75.55) (end 89.5 77.75) (width 0.25) (layer "B.Cu") (net 19) (tstamp b192d37e-0b83-47e4-8a5c-357ce7b6bfb4)) + (segment (start 89.5 77.75) (end 89.5 78.9) (width 0.25) (layer "B.Cu") (net 19) (tstamp f82acd0c-dc6e-4481-a6d1-4e8e5c498a12)) + (segment (start 87.75 81.6) (end 87.75 83.025305) (width 0.25) (layer "F.Cu") (net 20) (tstamp 0938dfda-2125-4252-93d2-2879f275fd42)) + (segment (start 87.75 83.025305) (end 76.454 94.321305) (width 0.25) (layer "F.Cu") (net 20) (tstamp 2234bdb6-059f-41b3-8d1c-a2843b76644e)) + (segment (start 76.454 94.321305) (end 76.454 95.758) (width 0.25) (layer "F.Cu") (net 20) (tstamp a044fe95-8da4-4138-983d-bb70267e282d)) + (via (at 87.75 81.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 20) (tstamp bb7a9984-9145-4673-98b7-e16c898a495d)) + (segment (start 90.8 78.9) (end 90.8 79.35962) (width 0.25) (layer "B.Cu") (net 20) (tstamp 2c0f80bd-7e58-4c68-9ca8-5561f571fe33)) + (segment (start 88.80962 81.6) (end 87.75 81.6) (width 0.25) (layer "B.Cu") (net 20) (tstamp 89507cc7-23b3-45db-b57a-da82405ef035)) + (segment (start 91.05 79.35962) (end 88.80962 81.6) (width 0.25) (layer "B.Cu") (net 20) (tstamp bbadd5e7-2b7e-4b01-8e1d-9a97877f6504)) + (segment (start 91.05 78.9) (end 91.05 79.35962) (width 0.25) (layer "B.Cu") (net 20) (tstamp f3c71120-d978-47e3-b54b-979207334b85)) + (segment (start 84.201 77.151) (end 84.201 75.901) (width 0.25) (layer "F.Cu") (net 21) (tstamp 509c295e-0fa3-4eed-b197-e678d766b8c9)) + (segment (start 84.201 75.901) (end 83.8 75.5) (width 0.25) (layer "F.Cu") (net 21) (tstamp cc30bb95-4251-409d-8fa5-51c583db3f84)) + (via (at 83.82 75.692) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 21) (tstamp 279cdc9b-366d-4b63-96c7-a4fd37de4de3)) + (segment (start 83.8 75.5) (end 86.7 78.4) (width 0.25) (layer "B.Cu") (net 21) (tstamp 016372af-d51c-49f1-b1ce-c3ca42d5f30e)) + (segment (start 86.7 78.4) (end 86.7 81.75) (width 0.25) (layer "B.Cu") (net 21) (tstamp 2c9e669b-94e5-4cc0-86ca-1be070f16259)) + (segment (start 86.7 81.75) (end 87.55 82.6) (width 0.25) (layer "B.Cu") (net 21) (tstamp 65d8214c-63e7-4dd1-bb1b-c1da7fa8ad3b)) + (segment (start 87.55 82.6) (end 89.8 82.6) (width 0.25) (layer "B.Cu") (net 21) (tstamp 68f83f44-3494-49c4-9163-63680093f425)) + (segment (start 89.8125 80.1) (end 90.3 80.1) (width 0.25) (layer "F.Cu") (net 22) (tstamp 05f66e81-64f1-4a66-8b55-6d8775a8823b)) + (segment (start 90.3 80.1) (end 91.05 80.85) (width 0.25) (layer "F.Cu") (net 22) (tstamp 8bc8f62f-d9ca-4d7d-bf77-21de99869eb0)) + (via (at 91.05 80.85) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 22) (tstamp 80e8f84f-debc-4e8c-a18c-8583a06472df)) + (segment (start 91.05 80.85) (end 91.05 82.35) (width 0.25) (layer "B.Cu") (net 22) (tstamp 35d08aaf-e367-4bed-b004-7695956db8f7)) + (segment (start 91.05 82.35) (end 90.8 82.6) (width 0.25) (layer "B.Cu") (net 22) (tstamp 51c244c6-934b-47e8-9b8b-ad733a54e05b)) + (segment (start 81.8375 87.05) (end 82.574999 87.05) (width 0.25) (layer "F.Cu") (net 23) (tstamp 17b6cd27-8011-43ab-978e-8998123b6d31)) + (segment (start 86.95 81.1375) (end 87.9875 80.1) (width 0.25) (layer "F.Cu") (net 23) (tstamp 2b1cfc51-6aad-4f58-8553-dc0b6c0aedb1)) + (segment (start 86.95 82.674999) (end 86.95 81.1375) (width 0.25) (layer "F.Cu") (net 23) (tstamp 3c8b0a04-e1e2-4323-bc03-05b51c758a02)) + (segment (start 82.574999 87.05) (end 86.95 82.674999) (width 0.25) (layer "F.Cu") (net 23) (tstamp dd91c135-f806-46f4-b1a5-00fa0531d4e6)) + (segment (start 85.9625 79.7875) (end 85.7 79.7875) (width 0.25) (layer "F.Cu") (net 24) (tstamp 2b8a1b5f-6d5f-46e5-b8dc-f0f29176217e)) + (segment (start 88.011 77.739) (end 85.9625 79.7875) (width 0.25) (layer "F.Cu") (net 24) (tstamp ac0ec85f-69e3-44a3-ae4a-cd7d1c8fcc1c)) + (segment (start 88.011 77.151) (end 88.011 77.739) (width 0.25) (layer "F.Cu") (net 24) (tstamp e5c11533-a842-414b-9993-d6d31a51bb56)) + (segment (start 88.6 70.4) (end 88.6 67.996) (width 0.25) (layer "F.Cu") (net 25) (tstamp 0da606be-5d86-4faf-943a-4df368a9e740)) + (segment (start 89.281 71.081) (end 88.6 70.4) (width 0.25) (layer "F.Cu") (net 25) (tstamp 194512cd-f735-4265-b839-fd05adaf03fd)) + (segment (start 89.281 72.201) (end 89.281 71.081) (width 0.25) (layer "F.Cu") (net 25) (tstamp 35b9c59f-a72b-41c3-85a8-3169b6af9a34)) + (segment (start 85.552 68.877305) (end 85.552 67.8) (width 0.25) (layer "F.Cu") (net 26) (tstamp 60560051-87ec-4dcd-b6fd-db445ddcae29)) + (segment (start 88.011 72.201) (end 88.011 71.226001) (width 0.25) (layer "F.Cu") (net 26) (tstamp 8529a95d-9a05-445b-8ca9-180dbc13f233)) + (segment (start 88.011 71.336305) (end 85.552 68.877305) (width 0.25) (layer "F.Cu") (net 26) (tstamp dd69dcb2-c084-4604-9d09-c790231b8eb7)) + (segment (start 88.011 72.201) (end 88.011 71.336305) (width 0.25) (layer "F.Cu") (net 26) (tstamp df26feb6-8bcf-4011-873a-77b89ab43568)) + (segment (start 92.418 109.982) (end 91.7 109.982) (width 0.5) (layer "B.Cu") (net 29) (tstamp 1e8a6973-c812-45de-9064-1f8956d33bb1)) + (segment (start 96.1 94.1) (end 96.1 105.83) (width 0.5) (layer "B.Cu") (net 29) (tstamp 24d8090d-6e50-41f8-8443-719a7366da36)) + (segment (start 96.008 75.692) (end 96.1 75.6) (width 0.5) (layer "B.Cu") (net 29) (tstamp 44f60a23-9589-4646-84ee-d6c30754d743)) + (segment (start 96.1 82.9) (end 96.1 94.1) (width 0.5) (layer "B.Cu") (net 29) (tstamp 66fe0d61-8067-4b42-896c-dfafa1daeede)) + (segment (start 96.1 105.83) (end 96.1 106.3) (width 0.5) (layer "B.Cu") (net 29) (tstamp 710a7c87-70de-404b-b5fa-f4ecc4faa54b)) + (segment (start 96.1 75.6) (end 96.1 82.9) (width 0.5) (layer "B.Cu") (net 29) (tstamp 7a6056be-ba35-4d8c-a185-b6e8f144ef1f)) + (segment (start 100 70.8) (end 96.8 70.8) (width 0.5) (layer "B.Cu") (net 29) (tstamp 888615de-f6ee-4037-9497-fe2b37aa889c)) + (segment (start 96.1 106.3) (end 92.418 109.982) (width 0.5) (layer "B.Cu") (net 29) (tstamp 980e81af-a17d-4727-b19f-78eb0173253f)) + (segment (start 96.1 71.5) (end 96.1 75.6) (width 0.5) (layer "B.Cu") (net 29) (tstamp 9d6d854d-56c1-4263-a966-741e17c7e43e)) + (segment (start 96.8 70.8) (end 96.1 71.5) (width 0.5) (layer "B.Cu") (net 29) (tstamp ac473c92-26e9-47e3-b97f-5646c04f5fdc)) + (segment (start 81.96 97.1) (end 76.5 91.64) (width 0.5) (layer "B.Cu") (net 29) (tstamp b392c58e-0106-4a1e-bdb4-5341152f30d0)) + (segment (start 100.584 71.384) (end 100 70.8) (width 0.5) (layer "B.Cu") (net 29) (tstamp c12ba074-5a71-41ce-ab2e-5bd420e944a2)) + (segment (start 93.1 97.1) (end 81.96 97.1) (width 0.5) (layer "B.Cu") (net 29) (tstamp c3c7d9fd-5ea7-4f4c-b3a1-c75fd17a5c63)) + (segment (start 100.584 72.942) (end 100.584 75.482) (width 0.5) (layer "B.Cu") (net 29) (tstamp c8f121a2-55cb-4356-aa92-9c98ba2c84ba)) + (segment (start 93.1 97.1) (end 96.1 94.1) (width 0.5) (layer "B.Cu") (net 29) (tstamp d20b8c4a-230c-4c8f-aed6-d05bc340fce9)) + (segment (start 94.386 75.692) (end 96.008 75.692) (width 0.5) (layer "B.Cu") (net 29) (tstamp e577307c-d54c-4a77-ab4b-b1e8549e2370)) + (segment (start 100.584 72.942) (end 100.584 71.384) (width 0.5) (layer "B.Cu") (net 29) (tstamp f9d7253b-2e1b-4a05-92ad-e567d002ab87)) + (segment (start 88.6 110.4) (end 89.1 109.9) (width 0.25) (layer "B.Cu") (net 30) (tstamp 17d8b6d0-2c3b-4932-9d81-23924629eb73)) + (segment (start 87.422 112.522) (end 88.065894 112.522) (width 0.25) (layer "B.Cu") (net 30) (tstamp 1a4623ca-6cd7-4688-b26b-0af7917b7791)) + (segment (start 87.15 112.25) (end 87.422 112.522) (width 0.25) (layer "B.Cu") (net 30) (tstamp 25b6a4d3-97ba-49fe-86c3-ac4d7f716c1c)) + (segment (start 87.16 107.768106) (end 87.16 107.061) (width 0.25) (layer "B.Cu") (net 30) (tstamp 35e65ded-fc7d-427b-b76a-af381fbdfb53)) + (segment (start 87.15 111.4) (end 87.15 112.25) (width 0.25) (layer "B.Cu") (net 30) (tstamp 3b0b4b07-f737-476e-8202-0ef6f126091c)) + (segment (start 88.8 108.6) (end 87.991894 108.6) (width 0.25) (layer "B.Cu") (net 30) (tstamp 54af52a2-ca46-4225-9d95-8ad863ad193a)) + (segment (start 89.1 108.9) (end 88.8 108.6) (width 0.25) (layer "B.Cu") (net 30) (tstamp 579b6c59-1663-41d4-b744-e29e6b4d6912)) + (segment (start 87.15 115.7) (end 87.15 115.25) (width 0.25) (layer "B.Cu") (net 30) (tstamp 647ee316-f6c6-46a5-a3b9-e50bdf782596)) + (segment (start 88.1 112.556106) (end 88.065894 112.522) (width 0.25) (layer "B.Cu") (net 30) (tstamp 6a8dbed9-4ce4-4105-800a-85f5e0dad321)) + (segment (start 87.15 115.25) (end 88.1 114.3) (width 0.25) (layer "B.Cu") (net 30) (tstamp 71aeded2-b9e9-43ef-8545-2d620e67dc5e)) + (segment (start 87.6 110.4) (end 88.6 110.4) (width 0.25) (layer "B.Cu") (net 30) (tstamp 8eb5fd94-d318-4a34-a40d-7fe6cf7c2b5a)) + (segment (start 87.15 110.85) (end 87.6 110.4) (width 0.25) (layer "B.Cu") (net 30) (tstamp 9d737e41-b459-47bc-b0c1-0ee27e540c50)) + (segment (start 88.065894 112.522) (end 91.948 112.522) (width 0.25) (layer "B.Cu") (net 30) (tstamp cd33a64f-9d19-4160-b36c-951eb62f3b22)) + (segment (start 87.15 111.4) (end 87.15 110.85) (width 0.25) (layer "B.Cu") (net 30) (tstamp e8c23c4c-c726-4ee7-8cdc-f82b08bb0b9f)) + (segment (start 89.1 109.9) (end 89.1 108.9) (width 0.25) (layer "B.Cu") (net 30) (tstamp eaa04eac-82e1-470c-97ba-3834b4dda949)) + (segment (start 87.991894 108.6) (end 87.16 107.768106) (width 0.25) (layer "B.Cu") (net 30) (tstamp f3e96feb-0bd4-484c-91b4-3882017a36b7)) + (segment (start 88.1 114.3) (end 88.1 112.556106) (width 0.25) (layer "B.Cu") (net 30) (tstamp f7d59cdd-5f45-44ea-8061-b79f43aa1297)) + (segment (start 96.76 121.615701) (end 96.76 120.77) (width 0.25) (layer "B.Cu") (net 31) (tstamp 00809a56-68d5-4096-8856-e44ba0c1509d)) + (segment (start 99.409 117.297) (end 100.584 116.122) (width 0.25) (layer "B.Cu") (net 31) (tstamp 240072ec-9520-4adb-ae3f-6a546b70b013)) + (segment (start 99.409 118.958701) (end 99.409 117.297) (width 0.25) (layer "B.Cu") (net 31) (tstamp 29a2d9fe-0265-457b-8c2c-1b7d8405712b)) + (segment (start 97.57 119.96) (end 98.407701 119.96) (width 0.25) (layer "B.Cu") (net 31) (tstamp 4068dd8c-32f2-4edf-b25f-820b2db77dfd)) + (segment (start 96.76 120.77) (end 97.57 119.96) (width 0.25) (layer "B.Cu") (net 31) (tstamp 63bf37f0-4b20-4629-9760-ee4f598d22ff)) + (segment (start 90.81 124.59) (end 91.3 124.1) (width 0.25) (layer "B.Cu") (net 31) (tstamp a140c42f-4ac3-4a10-bc59-87676c82a386)) + (segment (start 94.275701 124.1) (end 96.76 121.615701) (width 0.25) (layer "B.Cu") (net 31) (tstamp b8e62fb4-7b3d-498c-818b-4c1dc5000799)) + (segment (start 90.81 126) (end 90.81 124.59) (width 0.25) (layer "B.Cu") (net 31) (tstamp b9469124-f351-493d-a22f-4b0c92de4150)) + (segment (start 98.407701 119.96) (end 99.409 118.958701) (width 0.25) (layer "B.Cu") (net 31) (tstamp c796bca2-5b4d-40c4-bb9b-f904cdc3a2e2)) + (segment (start 91.3 124.1) (end 94.275701 124.1) (width 0.25) (layer "B.Cu") (net 31) (tstamp e7c53524-bb4f-4b20-a5b2-b8862a43aa18)) + (segment (start 96.696604 122.377) (end 98.573 122.377) (width 0.25) (layer "B.Cu") (net 32) (tstamp 2bd63c97-cf78-4d2e-9e39-a169d1d858e5)) + (segment (start 94.473604 124.6) (end 96.696604 122.377) (width 0.25) (layer "B.Cu") (net 32) (tstamp 564a2a60-b983-43eb-80a9-b9fb7f4332a3)) + (segment (start 92.45 126) (end 92.45 125.5) (width 0.25) (layer "B.Cu") (net 32) (tstamp 6e7dccba-9610-433f-85ac-8e8f2ec3e33c)) + (segment (start 93.35 124.6) (end 94.473604 124.6) (width 0.25) (layer "B.Cu") (net 32) (tstamp b2d33e09-1c35-4979-845a-fc42ebf9278c)) + (segment (start 98.573 122.377) (end 99.409 121.541) (width 0.25) (layer "B.Cu") (net 32) (tstamp b846422e-149f-4f4a-ae30-f13922d27d74)) + (segment (start 99.409 121.541) (end 99.409 119.837) (width 0.25) (layer "B.Cu") (net 32) (tstamp c5bda0a4-3c52-4b83-85de-cbcc14fbb6d3)) + (segment (start 92.45 125.5) (end 93.35 124.6) (width 0.25) (layer "B.Cu") (net 32) (tstamp ea9e88b0-78e4-461d-a01d-5db41c8efe56)) + (segment (start 99.409 119.837) (end 100.584 118.662) (width 0.25) (layer "B.Cu") (net 32) (tstamp f065fcd6-fb05-42b8-b75b-6d165eacd6ac)) + (segment (start 98.650396 122.936) (end 96.914 122.936) (width 0.25) (layer "B.Cu") (net 33) (tstamp 27ab95df-f3c2-4624-a395-f662da877a0b)) + (segment (start 100.584 121.202) (end 100.384396 121.202) (width 0.25) (layer "B.Cu") (net 33) (tstamp 2eecb5a9-1b9d-4807-83dd-3eca08fc1a3c)) + (segment (start 100.384396 121.202) (end 98.650396 122.936) (width 0.25) (layer "B.Cu") (net 33) (tstamp 40e05a32-4283-42b2-9e9e-5751ee35762e)) + (segment (start 94.15 125.56) (end 94.15 126) (width 0.25) (layer "B.Cu") (net 33) (tstamp 8ebfe389-ffd7-47ea-b6b7-065b047143d8)) + (segment (start 94.15 125.7) (end 94.15 126) (width 0.25) (layer "B.Cu") (net 33) (tstamp 99c5bb00-db23-47f0-8347-c935ccd0a9a1)) + (segment (start 96.914 122.936) (end 94.15 125.7) (width 0.25) (layer "B.Cu") (net 33) (tstamp bb6e9bbc-1e0d-4510-b22e-e8e36c68e36e)) + (segment (start 85.471 75.529) (end 85.5 75.5) (width 0.25) (layer "F.Cu") (net 34) (tstamp 123e64fd-3912-47f7-a086-596c1d7f7dea)) + (segment (start 89.85 75.35) (end 91.35 73.85) (width 0.25) (layer "F.Cu") (net 34) (tstamp 3058e405-fccb-4d5d-8919-53fda83a1d11)) + (segment (start 89.3 75.35) (end 89.85 75.35) (width 0.25) (layer "F.Cu") (net 34) (tstamp 4f99b36c-6c68-423d-92ee-aa91fb34065b)) + (segment (start 85.471 77.151) (end 85.471 75.529) (width 0.25) (layer "F.Cu") (net 34) (tstamp 5c7c886f-0e35-4040-820c-552660411507)) + (via (at 91.35 73.85) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 34) (tstamp 0ed8b6f0-7ce3-40d3-a1df-788dd1bcdaec)) + (via (at 85.5 75.692) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 34) (tstamp 35305520-bce8-456e-8235-3b4a2711c88b)) + (via (at 89.3 75.35) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 34) (tstamp a5190dac-a346-4e0d-86d4-a3e0fd4d63b1)) + (segment (start 91.35 73.85) (end 92.048 73.152) (width 0.25) (layer "B.Cu") (net 34) (tstamp 18bab122-03dd-4ddf-81f9-3cf0cf7f0a9d)) + (segment (start 86.175 74.825) (end 88.775 74.825) (width 0.25) (layer "B.Cu") (net 34) (tstamp 1aaf9078-992b-476b-82d1-d53c60bf1f6c)) + (segment (start 88.775 74.825) (end 89.3 75.35) (width 0.25) (layer "B.Cu") (net 34) (tstamp 32e0218c-2c7b-46e6-9cad-aa8712dce345)) + (segment (start 85.5 75.5) (end 86.175 74.825) (width 0.25) (layer "B.Cu") (net 34) (tstamp 5cec73f3-42d8-4ab8-95b2-70e70b7e78b8)) + (segment (start 92.048 73.152) (end 94.386 73.152) (width 0.25) (layer "B.Cu") (net 34) (tstamp 6cf2b85a-3099-4a0e-ae2d-acd3c07ec456)) + (segment (start 94.386 70.612) (end 94.386 73.152) (width 0.25) (layer "B.Cu") (net 34) (tstamp e4b20ed3-c852-4008-80d7-d6fefc014168)) + (segment (start 100.584 83.102) (end 99.282 81.8) (width 0.25) (layer "F.Cu") (net 38) (tstamp 17b3609b-62b4-4489-8311-fbf44a2fac8c)) + (segment (start 99.282 81.8) (end 95.6 81.8) (width 0.25) (layer "F.Cu") (net 38) (tstamp 8acef302-2293-4e47-aac7-a7f0047994bd)) + (segment (start 96.096 110.45) (end 98.044 108.502) (width 0.25) (layer "B.Cu") (net 52) (tstamp 66ee946a-387f-4a95-8eb3-6392f9789164)) + (segment (start 95.25 110.45) (end 96.096 110.45) (width 0.25) (layer "B.Cu") (net 52) (tstamp 93dd0b47-1ef7-40c2-834e-b787d3bc2475)) + (segment (start 97.136 111.95) (end 98.044 111.042) (width 0.25) (layer "B.Cu") (net 53) (tstamp 88758d66-e3b9-4cf8-b6c8-74fef19be851)) + (segment (start 95.25 111.95) (end 97.136 111.95) (width 0.25) (layer "B.Cu") (net 53) (tstamp cb1230f3-e41d-49a3-b9ba-0516c5d96b43)) + (segment (start 95.2 125.272) (end 95.2 125.5875) (width 0.25) (layer "F.Cu") (net 54) (tstamp 33225a75-d5d9-453d-aec1-b4778e20407c)) + (segment (start 100.584 111.042) (end 99.35 112.276) (width 0.25) (layer "F.Cu") (net 54) (tstamp 4825e6f8-c950-4d67-9cc3-910efbcd359e)) + (segment (start 99.35 122.9) (end 98.806 123.444) (width 0.25) (layer "F.Cu") (net 54) (tstamp 4aa3f4de-b29d-4ae2-9c6a-79ca72e93dcc)) + (segment (start 99.35 112.276) (end 99.35 122.9) (width 0.25) (layer "F.Cu") (net 54) (tstamp aac4eaed-e7eb-461c-89c6-cbc6982328d0)) + (segment (start 98.806 123.444) (end 97.028 123.444) (width 0.25) (layer "F.Cu") (net 54) (tstamp d1a8ac66-7c68-45e8-b821-cff1e5fd505a)) + (segment (start 97.028 123.444) (end 95.2 125.272) (width 0.25) (layer "F.Cu") (net 54) (tstamp fbf0bd04-b6e3-4ae4-890a-5c7f392f5268)) + (segment (start 90.1 117.4) (end 90.5 117) (width 0.25) (layer "F.Cu") (net 55) (tstamp 07b5a351-ea87-46d3-a1e8-7c3c2df26afe)) + (segment (start 90.1 118.1875) (end 90.1 117.4) (width 0.25) (layer "F.Cu") (net 55) (tstamp d2f6ef4f-7711-4b11-ab16-bf5c84396cd6)) + (via (at 90.5 117) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 55) (tstamp bdcf599d-e6d2-4a68-8a44-baaf41eb9cab)) + (segment (start 90.55 116.95) (end 90.5 117) (width 0.25) (layer "B.Cu") (net 55) (tstamp 532af59f-5aa9-423c-9041-51c8fe8c5b51)) + (segment (start 97.812 113.35) (end 98.044 113.582) (width 0.25) (layer "B.Cu") (net 55) (tstamp 61d74ae7-407e-4aec-a74b-5cbe190d50e6)) + (segment (start 93.4 116.05) (end 93.4 114.1) (width 0.25) (layer "B.Cu") (net 55) (tstamp 9b0cbe6d-9b55-40ed-8183-430366985bc0)) + (segment (start 92.5 116.95) (end 93.4 116.05) (width 0.25) (layer "B.Cu") (net 55) (tstamp a914fe48-1f14-4e67-94cb-d56f205bac3c)) + (segment (start 92.5 116.95) (end 90.55 116.95) (width 0.25) (layer "B.Cu") (net 55) (tstamp af5938fe-ce54-432d-8dc1-03494a471521)) + (segment (start 94.15 113.35) (end 97.812 113.35) (width 0.25) (layer "B.Cu") (net 55) (tstamp be655fae-7350-4173-80b2-5e72ae961a40)) + (segment (start 93.4 114.1) (end 94.15 113.35) (width 0.25) (layer "B.Cu") (net 55) (tstamp c88eb040-f608-4fac-bb61-e2020935278a)) + (segment (start 96.544 114.622) (end 95.3 114.622) (width 0.25) (layer "B.Cu") (net 56) (tstamp 88a389dc-ce09-4650-bcbf-171ca025b8cb)) + (segment (start 98.044 116.122) (end 96.544 114.622) (width 0.25) (layer "B.Cu") (net 56) (tstamp c469c418-6185-44ce-bf80-22158cd47008)) + (segment (start 95.582 116.2) (end 95.3 116.2) (width 0.25) (layer "B.Cu") (net 57) (tstamp 27b5e45d-8393-46b8-a27b-05932bfad01c)) + (segment (start 98.044 118.662) (end 95.582 116.2) (width 0.25) (layer "B.Cu") (net 57) (tstamp a93fc4fa-64ac-4432-9220-44585912de5c)) + (segment (start 88.34 117.93) (end 87.77 118.5) (width 0.25) (layer "F.Cu") (net 58) (tstamp 89ed2701-aefa-4c48-97a6-319744f4cbfa)) + (segment (start 87.77 118.5) (end 87.27 118.5) (width 0.25) (layer "F.Cu") (net 58) (tstamp ceb4c276-2503-46fc-aa76-3b87b0b0c463)) + (segment (start 88.33 117.92) (end 88.34 117.93) (width 0.25) (layer "F.Cu") (net 58) (tstamp f9f3cdd3-334e-4348-940d-4ae29499731b)) + (via (at 88.34 117.93) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 58) (tstamp 2eb24759-483b-49ba-a8a9-0d7d46ed589f)) + (segment (start 88.34 117.93) (end 88.34 115.78) (width 0.25) (layer "B.Cu") (net 58) (tstamp 10617560-3a99-4491-8e9a-de152676ed3b)) + (segment (start 88.34 115.78) (end 88.42 115.7) (width 0.25) (layer "B.Cu") (net 58) (tstamp 4fe21c25-3eb0-4dfc-a6ea-274e9fed20e2)) + (segment (start 85.59 108.79) (end 86.19 108.19) (width 0.25) (layer "F.Cu") (net 59) (tstamp 4dd5f578-e455-408e-b6bd-bc5e4b2c2738)) + (segment (start 87.644 108.19) (end 88.773 107.061) (width 0.25) (layer "F.Cu") (net 59) (tstamp 59ab2566-9cea-4c88-a2b7-023c38f56b25)) + (segment (start 86.19 108.19) (end 87.644 108.19) (width 0.25) (layer "F.Cu") (net 59) (tstamp ffc57e50-2248-4349-8f53-391a7949bc62)) + (segment (start 88.255 109.59) (end 88.38 109.465) (width 0.25) (layer "F.Cu") (net 71) (tstamp 6946998d-abac-4d44-99ca-fd19bbbbed57)) + (segment (start 87.29 109.59) (end 88.255 109.59) (width 0.25) (layer "F.Cu") (net 71) (tstamp d6315ae5-0d18-4cc6-99de-cf2e1def1d00)) + (via (at 88.38 109.59) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 71) (tstamp 9c1ba8d7-6e96-4c28-8965-3e08073c2bb2)) + (segment (start 88.145 109.23) (end 85.65 109.23) (width 0.25) (layer "B.Cu") (net 71) (tstamp ae4872af-d6bc-4afc-8517-61cbecb18256)) + (segment (start 88.38 109.465) (end 88.145 109.23) (width 0.25) (layer "B.Cu") (net 71) (tstamp d424ad35-1fbd-4462-8078-fb3815a7418f)) + (segment (start 85.816 94.831) (end 85.816 102.781) (width 0.25) (layer "F.Cu") (net 77) (tstamp 16e75624-259f-4a42-ab55-f166492d8eeb)) + (segment (start 84.3 81.6125) (end 83.2125 82.7) (width 0.25) (layer "F.Cu") (net 77) (tstamp 1f4c24a1-695e-41d3-99cd-dd2ea711aa58)) + (segment (start 85.85 93.5) (end 85.85 94.797) (width 0.25) (layer "F.Cu") (net 77) (tstamp 3205c308-6995-4d9f-90da-2d96683cb758)) + (segment (start 93.7 105.5) (end 88.535 105.5) (width 0.25) (layer "F.Cu") (net 77) (tstamp 3629e9fb-c0af-4174-9952-2efdea42ae19)) + (segment (start 96.679 108.479) (end 93.7 105.5) (width 0.25) (layer "F.Cu") (net 77) (tstamp 43a4ef0b-a610-49a6-aeeb-befd2df6662a)) + (segment (start 88.535 105.5) (end 85.816 102.781) (width 0.25) (layer "F.Cu") (net 77) (tstamp 54a1ea08-256f-4e46-b77c-bf276ddd9f91)) + (segment (start 95.504 121.158) (end 96.679 119.983) (width 0.25) (layer "F.Cu") (net 77) (tstamp 6d881d33-0ce6-44a5-9da9-06aafe0c9b86)) + (segment (start 85.7 81.6125) (end 84.3 81.6125) (width 0.25) (layer "F.Cu") (net 77) (tstamp 7342a22a-9938-41af-9cac-8f81122568ae)) + (segment (start 83.2125 82.7) (end 83.2125 84.0125) (width 0.25) (layer "F.Cu") (net 77) (tstamp 9471a591-f2e4-45b2-900f-d74cbf3a3e37)) + (segment (start 96.679 119.983) (end 96.679 108.479) (width 0.25) (layer "F.Cu") (net 77) (tstamp af5df2db-5984-4e99-9d57-a022de93f111)) + (segment (start 83.2125 84.0125) (end 83.8 84.6) (width 0.25) (layer "F.Cu") (net 77) (tstamp bad15786-9da4-4b9d-80d7-5a026cd589ef)) + (segment (start 85.85 94.797) (end 85.816 94.831) (width 0.25) (layer "F.Cu") (net 77) (tstamp e67cd583-c8a6-4b8e-ac38-8c03c5a5b7bd)) + (via (at 83.8 84.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 77) (tstamp 0cfe3226-4d1d-456f-8d94-5e1dde269275)) + (via (at 85.85 93.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 77) (tstamp ff778803-9695-42b8-8428-bb95960b07a3)) + (segment (start 83.8 91.45) (end 85.85 93.5) (width 0.25) (layer "B.Cu") (net 77) (tstamp 88dbc4d6-71e6-49cf-9568-4a599c1269aa)) + (segment (start 83.8 84.6) (end 83.8 91.45) (width 0.25) (layer "B.Cu") (net 77) (tstamp ccd1daa1-4b24-4ab3-b871-8617e224c94f)) + (segment (start 87.122 123.328) (end 87.95 122.5) (width 0.25) (layer "F.Cu") (net 78) (tstamp 63518a90-5561-46e0-a703-e2354104916e)) + (segment (start 87.122 127.254) (end 87.122 123.328) (width 0.25) (layer "F.Cu") (net 78) (tstamp 9da63d65-7f86-494e-9be5-e80a5cac0c58)) + (via (at 87.95 122.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 78) (tstamp 54b963ab-46d1-4dd0-908d-942c16d23b7c)) + (segment (start 87.95 122.5) (end 89.082 122.5) (width 0.25) (layer "B.Cu") (net 78) (tstamp 44157539-d1e4-4ed4-abae-fb0f814ffbb9)) + (segment (start 89.082 122.5) (end 92.964 118.618) (width 0.25) (layer "B.Cu") (net 78) (tstamp dae6d7a0-fd5e-433c-85b3-74cc9467fee8)) + (segment (start 95.6 79.8) (end 96.203 79.197) (width 0.25) (layer "F.Cu") (net 79) (tstamp 4191f2e2-f2cf-477e-8d3a-a288c5693061)) + (segment (start 96.203 79.197) (end 99.219 79.197) (width 0.25) (layer "F.Cu") (net 79) (tstamp a812327d-afe0-4f98-bb4b-5271aa1e481d)) + (segment (start 99.219 79.197) (end 100.584 80.562) (width 0.25) (layer "F.Cu") (net 79) (tstamp b313c6eb-badf-4031-863a-ee759b2d2c80)) + (segment (start 84.201 72.201) (end 84.201 73.376) (width 0.25) (layer "F.Cu") (net 80) (tstamp 29ccdf7e-2cda-4ac5-9b96-f2f61233b081)) + (segment (start 84.201 73.376) (end 84.7 73.875) (width 0.25) (layer "F.Cu") (net 80) (tstamp 3948eedb-0498-45a3-9f3b-418a70130b33)) + (segment (start 92.9375 79.0625) (end 93.6 78.4) (width 0.25) (layer "F.Cu") (net 80) (tstamp a9d9d7d3-73fc-4369-ba30-45f441c78a9e)) + (segment (start 93.775 81.8) (end 92.9375 80.9625) (width 0.25) (layer "F.Cu") (net 80) (tstamp e187e19f-88ed-4145-9689-a529aab75800)) + (segment (start 92.9375 80.9625) (end 92.9375 79.0625) (width 0.25) (layer "F.Cu") (net 80) (tstamp fcd1e1a3-238f-4561-bcda-f8c694c92b9d)) + (via (at 93.6 78.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 80) (tstamp ab0a82ff-1bad-434e-8361-f57089f9d94a)) + (via (at 84.7 73.875) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 80) (tstamp ae42ea8a-a76f-4178-924b-7d7d2a14871f)) + (segment (start 85.425 73.15) (end 84.7 73.875) (width 0.25) (layer "B.Cu") (net 80) (tstamp 113095a2-94a5-4839-9871-bc0901982a37)) + (segment (start 88.35 73.15) (end 85.425 73.15) (width 0.25) (layer "B.Cu") (net 80) (tstamp 2dfe53c5-d978-4582-b54d-d226fc19ebd7)) + (segment (start 93.6 78.4) (end 88.35 73.15) (width 0.25) (layer "B.Cu") (net 80) (tstamp 68ef269d-7ce4-4940-8bff-cd22d682ad40)) + (segment (start 86.25 114) (end 87.31 114) (width 0.25) (layer "F.Cu") (net 81) (tstamp 8bfa5ab7-ecb7-47f7-9d44-ea51ed62ef2e)) + (segment (start 87.31 114) (end 87.32 113.99) (width 0.25) (layer "F.Cu") (net 81) (tstamp dafab347-631c-4868-8b6f-0588bb37f531)) + (via (at 87.32 113.99) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 81) (tstamp 9af2eb1f-3662-41fd-941a-51ee7b41a209)) + (segment (start 86.66 113.33) (end 87.32 113.99) (width 0.25) (layer "B.Cu") (net 81) (tstamp 138c8a67-2be2-4f58-95f8-25bd38a4776c)) + (segment (start 85.74 113.33) (end 86.66 113.33) (width 0.25) (layer "B.Cu") (net 81) (tstamp 8b9a52b7-d28a-4466-9c77-8f389cf0653d)) + (segment (start 85.57 117.7) (end 84.99 117.12) (width 0.25) (layer "F.Cu") (net 82) (tstamp a299ab4c-e7fc-496e-bbe4-ee858e0ddf44)) + (segment (start 84.32 117.12) (end 84.3 117.1) (width 0.25) (layer "F.Cu") (net 82) (tstamp c4ea29b4-4743-43c4-b567-2b7c0e4cdbf9)) + (segment (start 84.99 117.12) (end 84.32 117.12) (width 0.25) (layer "F.Cu") (net 82) (tstamp e14b56e5-158a-4b8c-8f97-5c985b80ea62)) + (via (at 84.3 117.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 82) (tstamp e11b5b6f-ef58-4357-b10b-c1b9f01294d6)) + (segment (start 85.84 117.12) (end 86.14 117.42) (width 0.25) (layer "B.Cu") (net 82) (tstamp 6637f4c3-db71-4d9b-9180-14a746b0369e)) + (segment (start 84.58 117.12) (end 85.84 117.12) (width 0.25) (layer "B.Cu") (net 82) (tstamp e08cca69-bc94-413c-b120-c4085a297dd0)) + (segment (start 87.9 117.1) (end 89.2 117.1) (width 0.25) (layer "F.Cu") (net 83) (tstamp 09524657-eee5-4e94-9e3b-dcca404bfbcc)) + (segment (start 87.27 117.8) (end 87.27 117.73) (width 0.25) (layer "F.Cu") (net 83) (tstamp 0b7b8468-b37c-4752-9f87-0944e6181ec2)) + (segment (start 87.27 117.73) (end 87.9 117.1) (width 0.25) (layer "F.Cu") (net 83) (tstamp 16f1a278-b777-492a-b732-b028cb03def0)) + (segment (start 91.501 114.615) (end 91.948 115.062) (width 0.25) (layer "F.Cu") (net 83) (tstamp 1ec05aa8-27a6-4b06-b8f4-83a26d7a28fc)) + (segment (start 85.35 114.8) (end 91.438 114.8) (width 0.25) (layer "F.Cu") (net 83) (tstamp 45aecb17-b495-4ef8-b773-7a50ab9cb906)) + (segment (start 89.361 110.19) (end 90.28 111.109) (width 0.25) (layer "F.Cu") (net 83) (tstamp 627f2db9-2b75-4419-ae1a-a4d948b662fa)) + (segment (start 91.238 115.062) (end 91.7 115.062) (width 0.25) (layer "F.Cu") (net 83) (tstamp 8a8cc832-4d8c-4459-8694-bf8b23361ce9)) + (segment (start 85.59 109.59) (end 86.19 110.19) (width 0.25) (layer "F.Cu") (net 83) (tstamp 90efde84-d194-433d-8e45-55963c4f4560)) + (segment (start 86.19 110.19) (end 89.361 110.19) (width 0.25) (layer "F.Cu") (net 83) (tstamp c11e56fc-cfde-4afb-b29b-a52b777632e3)) + (segment (start 89.2 117.1) (end 91.238 115.062) (width 0.25) (layer "F.Cu") (net 83) (tstamp e7dc1575-d2b7-4a28-9c47-87742553c1e1)) + (segment (start 91.438 114.8) (end 91.7 115.062) (width 0.25) (layer "F.Cu") (net 83) (tstamp ec104d66-bfa4-4198-bac2-bf53eea2bea6)) + (segment (start 84.55 114) (end 85.35 114.8) (width 0.25) (layer "F.Cu") (net 83) (tstamp f1d3adec-85b5-4120-9572-b2c8a26334b2)) + (segment (start 90.28 111.109) (end 90.28 113.394) (width 0.25) (layer "F.Cu") (net 83) (tstamp f382e4c7-b993-4c84-a061-7a60987be23c)) + (segment (start 90.28 113.394) (end 91.948 115.062) (width 0.25) (layer "F.Cu") (net 83) (tstamp f50a2c74-3e1e-4275-b34d-ae70bf501852)) + (segment (start 91.567 115.443) (end 91.948 115.062) (width 0.5) (layer "B.Cu") (net 83) (tstamp bd49f681-87f0-415b-a3ab-08eec0407f8f)) + + (zone (net 2) (net_name "GNDD") (layer "F.Cu") (tstamp 5088aa28-a136-4edb-9081-f8892d7cf1f8) (hatch edge 0.5) + (connect_pads (clearance 0.5)) + (min_thickness 0.25) (filled_areas_thickness no) + (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5)) + (polygon + (pts + (xy 72.644 64.262) + (xy 103.124 64.262) + (xy 103.124 129.794) + (xy 72.644 129.794) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 93.456587 106.145185) + (xy 93.477229 106.161819) + (xy 96.017181 108.701771) + (xy 96.050666 108.763094) + (xy 96.0535 108.789452) + (xy 96.0535 117.196) + (xy 96.033815 117.263039) + (xy 95.981011 117.308794) + (xy 95.9295 117.32) + (xy 95.754 117.32) + (xy 95.754 118.234498) + (xy 95.646315 118.18532) + (xy 95.539763 118.17) + (xy 95.468237 118.17) + (xy 95.361685 118.18532) + (xy 95.254 118.234498) + (xy 95.254 117.32) + (xy 94.606155 117.32) + (xy 94.546627 117.326401) + (xy 94.54662 117.326403) + (xy 94.411913 117.376645) + (xy 94.411906 117.376649) + (xy 94.296812 117.462809) + (xy 94.296809 117.462812) + (xy 94.210649 117.577906) + (xy 94.210645 117.577913) + (xy 94.161578 117.70947) + (xy 94.119707 117.765404) + (xy 94.054242 117.789821) + (xy 93.985969 117.774969) + (xy 93.957715 117.753819) + (xy 93.903234 117.699338) + (xy 93.835401 117.631505) + (xy 93.835397 117.631502) + (xy 93.835396 117.631501) + (xy 93.641834 117.495967) + (xy 93.64183 117.495965) + (xy 93.542235 117.449523) + (xy 93.427663 117.396097) + (xy 93.427659 117.396096) + (xy 93.427655 117.396094) + (xy 93.199413 117.334938) + (xy 93.199403 117.334936) + (xy 92.964001 117.314341) + (xy 92.963999 117.314341) + (xy 92.728596 117.334936) + (xy 92.728586 117.334938) + (xy 92.500344 117.396094) + (xy 92.500335 117.396098) + (xy 92.286171 117.495964) + (xy 92.286169 117.495965) + (xy 92.092597 117.631505) + (xy 91.925505 117.798597) + (xy 91.789965 117.992169) + (xy 91.789964 117.992171) + (xy 91.707041 118.17) + (xy 91.693828 118.198337) + (xy 91.690098 118.206335) + (xy 91.690094 118.206344) + (xy 91.628938 118.434586) + (xy 91.628936 118.434596) + (xy 91.608341 118.669999) + (xy 91.608341 118.67) + (xy 91.628936 118.905403) + (xy 91.628938 118.905413) + (xy 91.690094 119.133655) + (xy 91.690096 119.133659) + (xy 91.690097 119.133663) + (xy 91.767507 119.299669) + (xy 91.789965 119.34783) + (xy 91.789967 119.347834) + (xy 91.925501 119.541395) + (xy 91.925506 119.541402) + (xy 92.092597 119.708493) + (xy 92.092603 119.708498) + (xy 92.278594 119.83873) + (xy 92.322219 119.893307) + (xy 92.329413 119.962805) + (xy 92.29789 120.02516) + (xy 92.278595 120.04188) + (xy 92.092922 120.17189) + (xy 92.09292 120.171891) + (xy 91.925891 120.33892) + (xy 91.925886 120.338926) + (xy 91.7904 120.53242) + (xy 91.790399 120.532422) + (xy 91.69057 120.746507) + (xy 91.690567 120.746513) + (xy 91.633364 120.959999) + (xy 91.633364 120.96) + (xy 92.530314 120.96) + (xy 92.504507 121.000156) + (xy 92.464 121.138111) + (xy 92.464 121.281889) + (xy 92.504507 121.419844) + (xy 92.530314 121.46) + (xy 91.633364 121.46) + (xy 91.690567 121.673486) + (xy 91.69057 121.673492) + (xy 91.790399 121.887578) + (xy 91.925894 122.081082) + (xy 92.092917 122.248105) + (xy 92.286421 122.3836) + (xy 92.500507 122.483429) + (xy 92.500516 122.483433) + (xy 92.714 122.540634) + (xy 92.714 121.645501) + (xy 92.821685 121.69468) + (xy 92.928237 121.71) + (xy 92.999763 121.71) + (xy 93.106315 121.69468) + (xy 93.214 121.645501) + (xy 93.214 122.540633) + (xy 93.427483 122.483433) + (xy 93.427492 122.483429) + (xy 93.641578 122.3836) + (xy 93.835082 122.248105) + (xy 94.002105 122.081082) + (xy 94.132119 121.895405) + (xy 94.186696 121.851781) + (xy 94.256195 121.844588) + (xy 94.318549 121.87611) + (xy 94.335269 121.895405) + (xy 94.34818 121.913844) + (xy 94.465505 122.081401) + (xy 94.632599 122.248495) + (xy 94.729384 122.316265) + (xy 94.826165 122.384032) + (xy 94.826167 122.384033) + (xy 94.82617 122.384035) + (xy 95.040337 122.483903) + (xy 95.268592 122.545063) + (xy 95.456918 122.561539) + (xy 95.503999 122.565659) + (xy 95.504 122.565659) + (xy 95.504001 122.565659) + (xy 95.543234 122.562226) + (xy 95.739408 122.545063) + (xy 95.967663 122.483903) + (xy 96.18183 122.384035) + (xy 96.375401 122.248495) + (xy 96.542495 122.081401) + (xy 96.675531 121.891405) + (xy 96.730108 121.847781) + (xy 96.799606 121.840587) + (xy 96.861961 121.87211) + (xy 96.87868 121.891405) + (xy 97.00589 122.073078) + (xy 97.172917 122.240105) + (xy 97.366421 122.3756) + (xy 97.580507 122.475429) + (xy 97.580516 122.475433) + (xy 97.794 122.532634) + (xy 97.794 121.637501) + (xy 97.901685 121.68668) + (xy 98.008237 121.702) + (xy 98.079763 121.702) + (xy 98.186315 121.68668) + (xy 98.294 121.637501) + (xy 98.294 122.532633) + (xy 98.507483 122.475433) + (xy 98.507497 122.475428) + (xy 98.548094 122.456497) + (xy 98.617171 122.446004) + (xy 98.680955 122.474523) + (xy 98.719196 122.532999) + (xy 98.7245 122.568878) + (xy 98.7245 122.589547) + (xy 98.704815 122.656586) + (xy 98.688181 122.677228) + (xy 98.583228 122.782181) + (xy 98.521905 122.815666) + (xy 98.495547 122.8185) + (xy 97.110737 122.8185) + (xy 97.09512 122.816776) + (xy 97.095093 122.817062) + (xy 97.087331 122.816327) + (xy 97.020144 122.818439) + (xy 97.01625 122.8185) + (xy 96.98865 122.8185) + (xy 96.984962 122.818965) + (xy 96.984649 122.819005) + (xy 96.973031 122.819918) + (xy 96.929372 122.82129) + (xy 96.929369 122.821291) + (xy 96.910126 122.826881) + (xy 96.891083 122.830825) + (xy 96.871204 122.833336) + (xy 96.871203 122.833337) + (xy 96.830593 122.849415) + (xy 96.819548 122.853197) + (xy 96.777608 122.865383) + (xy 96.777604 122.865385) + (xy 96.760365 122.87558) + (xy 96.742898 122.884137) + (xy 96.724269 122.891512) + (xy 96.724267 122.891514) + (xy 96.688926 122.917189) + (xy 96.679168 122.923599) + (xy 96.64158 122.945828) + (xy 96.627408 122.96) + (xy 96.612623 122.972628) + (xy 96.596412 122.984407) + (xy 96.568571 123.018059) + (xy 96.560711 123.026696) + (xy 95.049226 124.538181) + (xy 94.987903 124.571666) + (xy 94.961545 124.5745) + (xy 94.699999 124.5745) + (xy 94.69998 124.574501) + (xy 94.597203 124.585) + (xy 94.5972 124.585001) + (xy 94.430668 124.640185) + (xy 94.430663 124.640187) + (xy 94.281342 124.732289) + (xy 94.157289 124.856342) + (xy 94.065187 125.005663) + (xy 94.065186 125.005666) + (xy 94.03933 125.083694) + (xy 93.999557 125.141139) + (xy 93.93504 125.167961) + (xy 93.866265 125.155646) + (xy 93.815065 125.108102) + (xy 93.803919 125.083696) + (xy 93.763814 124.962666) + (xy 93.671712 124.813344) + (xy 93.547656 124.689288) + (xy 93.43401 124.619191) + (xy 93.398336 124.597187) + (xy 93.398331 124.597185) + (xy 93.329875 124.574501) + (xy 93.231797 124.542001) + (xy 93.231795 124.542) + (xy 93.12901 124.5315) + (xy 92.078998 124.5315) + (xy 92.07898 124.531501) + (xy 91.976203 124.542) + (xy 91.9762 124.542001) + (xy 91.809668 124.597185) + (xy 91.809663 124.597187) + (xy 91.660342 124.689289) + (xy 91.536289 124.813342) + (xy 91.453481 124.947597) + (xy 91.401533 124.994321) + (xy 91.347942 125.0065) + (xy 91.281088 125.0065) + (xy 91.214049 124.986815) + (xy 91.175549 124.947597) + (xy 91.146712 124.900844) + (xy 91.022656 124.776788) + (xy 90.884208 124.691393) + (xy 90.837485 124.639446) + (xy 90.826262 124.570483) + (xy 90.854106 124.506401) + (xy 90.910304 124.468149) + (xy 90.914334 124.466814) + (xy 91.063656 124.374712) + (xy 91.187712 124.250656) + (xy 91.279814 124.101334) + (xy 91.334999 123.934797) + (xy 91.3455 123.832009) + (xy 91.345499 123.231992) + (xy 91.344865 123.225789) + (xy 91.334999 123.129203) + (xy 91.334998 123.1292) + (xy 91.330129 123.114506) + (xy 91.279814 122.962666) + (xy 91.187712 122.813344) + (xy 91.063656 122.689288) + (xy 91.060819 122.687538) + (xy 91.059283 122.68583) + (xy 91.057989 122.684807) + (xy 91.058163 122.684585) + (xy 91.014096 122.635594) + (xy 91.002872 122.566632) + (xy 91.030713 122.502549) + (xy 91.060817 122.476462) + (xy 91.063656 122.474712) + (xy 91.187712 122.350656) + (xy 91.279814 122.201334) + (xy 91.334999 122.034797) + (xy 91.3455 121.932009) + (xy 91.345499 121.331992) + (xy 91.343015 121.307679) + (xy 91.334999 121.229203) + (xy 91.334998 121.2292) + (xy 91.3285 121.20959) + (xy 91.279814 121.062666) + (xy 91.187712 120.913344) + (xy 91.164473 120.890105) + (xy 91.130988 120.828782) + (xy 91.135972 120.75909) + (xy 91.146612 120.737332) + (xy 91.234814 120.594334) + (xy 91.289999 120.427797) + (xy 91.3005 120.325009) + (xy 91.300499 119.699992) + (xy 91.289999 119.597203) + (xy 91.234814 119.430666) + (xy 91.142712 119.281344) + (xy 91.049049 119.187681) + (xy 91.015564 119.126358) + (xy 91.020548 119.056666) + (xy 91.049049 119.012319) + (xy 91.078885 118.982483) + (xy 91.142712 118.918656) + (xy 91.234814 118.769334) + (xy 91.289999 118.602797) + (xy 91.3005 118.500009) + (xy 91.300499 117.874992) + (xy 91.289999 117.772203) + (xy 91.234814 117.605666) + (xy 91.191141 117.53486) + (xy 91.172702 117.46747) + (xy 91.191688 117.403793) + (xy 91.225788 117.349524) + (xy 91.230892 117.334938) + (xy 91.285368 117.179255) + (xy 91.287334 117.161805) + (xy 91.305565 117.000003) + (xy 91.305565 116.999996) + (xy 91.285369 116.82075) + (xy 91.285368 116.820745) + (xy 91.278051 116.799834) + (xy 91.225789 116.650478) + (xy 91.216635 116.63591) + (xy 91.177206 116.573158) + (xy 91.129816 116.497738) + (xy 91.12594 116.493862) + (xy 91.092455 116.432539) + (xy 91.097439 116.362847) + (xy 91.139311 116.306914) + (xy 91.204775 116.282497) + (xy 91.247953 116.288532) + (xy 91.248274 116.287338) + (xy 91.321334 116.306914) + (xy 91.473308 116.347635) + (xy 91.63523 116.361801) + (xy 91.699998 116.367468) + (xy 91.7 116.367468) + (xy 91.700002 116.367468) + (xy 91.756673 116.362509) + (xy 91.926692 116.347635) + (xy 92.146496 116.288739) + (xy 92.352734 116.192568) + (xy 92.539139 116.062047) + (xy 92.700047 115.901139) + (xy 92.830568 115.714734) + (xy 92.926739 115.508496) + (xy 92.985635 115.288692) + (xy 93.005468 115.062) + (xy 92.985635 114.835308) + (xy 92.926739 114.615504) + (xy 92.830568 114.409266) + (xy 92.700047 114.222861) + (xy 92.700045 114.222858) + (xy 92.539141 114.061954) + (xy 92.352734 113.931432) + (xy 92.352728 113.931429) + (xy 92.325038 113.918517) + (xy 92.294724 113.904381) + (xy 92.242285 113.85821) + (xy 92.223133 113.791017) + (xy 92.243348 113.724135) + (xy 92.294725 113.679618) + (xy 92.352734 113.652568) + (xy 92.539139 113.522047) + (xy 92.700047 113.361139) + (xy 92.830568 113.174734) + (xy 92.926739 112.968496) + (xy 92.985635 112.748692) + (xy 93.005468 112.522) + (xy 92.985635 112.295308) + (xy 92.926739 112.075504) + (xy 92.830568 111.869266) + (xy 92.700047 111.682861) + (xy 92.700045 111.682858) + (xy 92.539141 111.521954) + (xy 92.352734 111.391432) + (xy 92.352728 111.391429) + (xy 92.294725 111.364382) + (xy 92.242285 111.31821) + (xy 92.223133 111.251017) + (xy 92.243348 111.184135) + (xy 92.294725 111.139618) + (xy 92.306582 111.134089) + (xy 92.352734 111.112568) + (xy 92.539139 110.982047) + (xy 92.700047 110.821139) + (xy 92.830568 110.634734) + (xy 92.926739 110.428496) + (xy 92.985635 110.208692) + (xy 93.005468 109.982) + (xy 93.004635 109.972483) + (xy 92.99118 109.818692) + (xy 92.985635 109.755308) + (xy 92.926739 109.535504) + (xy 92.830568 109.329266) + (xy 92.700047 109.142861) + (xy 92.700045 109.142858) + (xy 92.539143 108.981956) + (xy 92.513912 108.964289) + (xy 92.470287 108.909712) + (xy 92.463095 108.840213) + (xy 92.494617 108.777859) + (xy 92.554847 108.742445) + (xy 92.571781 108.739424) + (xy 92.60738 108.735596) + (xy 92.742086 108.685354) + (xy 92.742093 108.68535) + (xy 92.857187 108.59919) + (xy 92.85719 108.599187) + (xy 92.94335 108.484093) + (xy 92.943354 108.484086) + (xy 92.993596 108.349379) + (xy 92.993598 108.349372) + (xy 92.999999 108.289844) + (xy 93 108.289827) + (xy 93 107.692) + (xy 92.133686 107.692) + (xy 92.159493 107.651844) + (xy 92.2 107.513889) + (xy 92.2 107.370111) + (xy 92.159493 107.232156) + (xy 92.133686 107.192) + (xy 93 107.192) + (xy 93 106.594172) + (xy 92.999999 106.594155) + (xy 92.993598 106.534627) + (xy 92.993596 106.53462) + (xy 92.943354 106.399913) + (xy 92.94335 106.399906) + (xy 92.886385 106.323811) + (xy 92.861967 106.258347) + (xy 92.876818 106.190074) + (xy 92.926223 106.140668) + (xy 92.985651 106.1255) + (xy 93.389548 106.1255) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 82.877948 116.687483) + (xy 82.955273 116.728814) + (xy 83.143868 116.786024) + (xy 83.34 116.805341) + (xy 83.377205 116.801676) + (xy 83.445848 116.814694) + (xy 83.496559 116.862758) + (xy 83.513235 116.930609) + (xy 83.512578 116.938962) + (xy 83.494435 117.099995) + (xy 83.494435 117.100003) + (xy 83.51463 117.279249) + (xy 83.514631 117.279254) + (xy 83.574211 117.449523) + (xy 83.601891 117.493575) + (xy 83.670184 117.602262) + (xy 83.797738 117.729816) + (xy 83.950478 117.825789) + (xy 84.091058 117.87498) + (xy 84.120745 117.885368) + (xy 84.12075 117.885369) + (xy 84.299996 117.905565) + (xy 84.3 117.905565) + (xy 84.300004 117.905565) + (xy 84.431617 117.890736) + (xy 84.500439 117.902791) + (xy 84.551818 117.95014) + (xy 84.5695 118.013955) + (xy 84.5695 118.122869) + (xy 84.569501 118.122876) + (xy 84.576619 118.189092) + (xy 84.576619 118.215599) + (xy 84.57 118.277169) + (xy 84.57 118.35) + (xy 84.588591 118.35) + (xy 84.65563 118.369685) + (xy 84.687855 118.399686) + (xy 84.712454 118.432546) + (xy 84.749336 118.460156) + (xy 84.827664 118.518793) + (xy 84.827671 118.518797) + (xy 84.962517 118.569091) + (xy 84.962516 118.569091) + (xy 84.969444 118.569835) + (xy 85.022127 118.5755) + (xy 85.696001 118.575499) + (xy 85.763039 118.595183) + (xy 85.808794 118.647987) + (xy 85.82 118.699499) + (xy 85.82 118.726) + (xy 85.800315 118.793039) + (xy 85.747511 118.838794) + (xy 85.696 118.85) + (xy 84.585953 118.85) + (xy 84.518914 118.830315) + (xy 84.498272 118.813681) + (xy 82.731819 117.047228) + (xy 82.698334 116.985905) + (xy 82.6955 116.959547) + (xy 82.6955 116.796843) + (xy 82.715185 116.729804) + (xy 82.767989 116.684049) + (xy 82.837147 116.674105) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 82.877948 112.287483) + (xy 82.955273 112.328814) + (xy 83.143868 112.386024) + (xy 83.34 112.405341) + (xy 83.536132 112.386024) + (xy 83.552199 112.381149) + (xy 83.622066 112.380525) + (xy 83.681179 112.417773) + (xy 83.710771 112.481067) + (xy 83.701446 112.550311) + (xy 83.687463 112.574121) + (xy 83.606204 112.682669) + (xy 83.606202 112.682671) + (xy 83.55591 112.817513) + (xy 83.555909 112.817517) + (xy 83.5495 112.877127) + (xy 83.5495 112.877134) + (xy 83.5495 112.877135) + (xy 83.5495 113.52287) + (xy 83.549501 113.522879) + (xy 83.556367 113.586751) + (xy 83.556367 113.613257) + (xy 83.555909 113.617516) + (xy 83.555909 113.617517) + (xy 83.5495 113.677127) + (xy 83.5495 113.677132) + (xy 83.5495 113.677133) + (xy 83.5495 114.32287) + (xy 83.549501 114.322876) + (xy 83.555908 114.382483) + (xy 83.606202 114.517328) + (xy 83.606206 114.517335) + (xy 83.687462 114.625878) + (xy 83.71188 114.691342) + (xy 83.697029 114.759615) + (xy 83.647624 114.809021) + (xy 83.579351 114.823873) + (xy 83.552204 114.818851) + (xy 83.536131 114.813975) + (xy 83.34 114.794659) + (xy 83.14387 114.813975) + (xy 83.088278 114.830839) + (xy 82.955273 114.871186) + (xy 82.95527 114.871187) + (xy 82.955268 114.871188) + (xy 82.877952 114.912514) + (xy 82.80955 114.926755) + (xy 82.744306 114.901754) + (xy 82.702936 114.845449) + (xy 82.6955 114.803155) + (xy 82.6955 112.396843) + (xy 82.715185 112.329804) + (xy 82.767989 112.284049) + (xy 82.837147 112.274105) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 89.589926 111.941374) + (xy 89.639332 111.990779) + (xy 89.6545 112.050207) + (xy 89.6545 113.311255) + (xy 89.652775 113.326872) + (xy 89.653061 113.326899) + (xy 89.652326 113.334665) + (xy 89.654439 113.401872) + (xy 89.6545 113.405767) + (xy 89.6545 113.433357) + (xy 89.655003 113.437335) + (xy 89.655918 113.448967) + (xy 89.65729 113.492624) + (xy 89.657291 113.492627) + (xy 89.66288 113.511867) + (xy 89.666824 113.530911) + (xy 89.669336 113.550792) + (xy 89.685414 113.591403) + (xy 89.689197 113.602452) + (xy 89.700244 113.640476) + (xy 89.701382 113.64439) + (xy 89.706999 113.653889) + (xy 89.71158 113.661634) + (xy 89.720138 113.679103) + (xy 89.727514 113.697732) + (xy 89.753181 113.73306) + (xy 89.759593 113.742821) + (xy 89.781828 113.780417) + (xy 89.781833 113.780424) + (xy 89.79599 113.79458) + (xy 89.808628 113.809376) + (xy 89.820405 113.825586) + (xy 89.820406 113.825587) + (xy 89.854057 113.853425) + (xy 89.862698 113.861288) + (xy 89.964229 113.962819) + (xy 89.997714 114.024142) + (xy 89.99273 114.093834) + (xy 89.950858 114.149767) + (xy 89.885394 114.174184) + (xy 89.876548 114.1745) + (xy 88.243533 114.1745) + (xy 88.176494 114.154815) + (xy 88.130739 114.102011) + (xy 88.120313 114.036617) + (xy 88.125565 113.990003) + (xy 88.125565 113.989996) + (xy 88.105369 113.81075) + (xy 88.105368 113.810745) + (xy 88.065823 113.697732) + (xy 88.045789 113.640478) + (xy 87.949816 113.487738) + (xy 87.822262 113.360184) + (xy 87.781649 113.334665) + (xy 87.66952 113.264209) + (xy 87.594345 113.237904) + (xy 87.53757 113.197182) + (xy 87.511823 113.132229) + (xy 87.52528 113.063668) + (xy 87.573667 113.013265) + (xy 87.589642 113.005575) + (xy 87.617407 112.994582) + (xy 87.628444 112.990803) + (xy 87.67039 112.978618) + (xy 87.687629 112.968422) + (xy 87.705103 112.959862) + (xy 87.723727 112.952488) + (xy 87.723727 112.952487) + (xy 87.723732 112.952486) + (xy 87.759083 112.9268) + (xy 87.768814 112.920408) + (xy 87.80642 112.89817) + (xy 87.820589 112.883999) + (xy 87.835379 112.871368) + (xy 87.851587 112.859594) + (xy 87.879438 112.825926) + (xy 87.887279 112.817309) + (xy 88.267771 112.436818) + (xy 88.329094 112.403333) + (xy 88.355452 112.400499) + (xy 88.967871 112.400499) + (xy 88.967872 112.400499) + (xy 89.027483 112.394091) + (xy 89.162331 112.343796) + (xy 89.277546 112.257546) + (xy 89.363796 112.142331) + (xy 89.414091 112.007483) + (xy 89.414091 112.007482) + (xy 89.414318 112.006874) + (xy 89.456189 111.95094) + (xy 89.521653 111.926523) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 84.039507 107.883194) + (xy 84.056148 107.893888) + (xy 84.056393 107.893523) + (xy 84.061458 107.896907) + (xy 84.061462 107.89691) + (xy 84.235273 107.989814) + (xy 84.423868 108.047024) + (xy 84.541339 108.058593) + (xy 84.606126 108.084753) + (xy 84.646485 108.141787) + (xy 84.649602 108.211588) + (xy 84.628453 108.256305) + (xy 84.616205 108.272665) + (xy 84.616202 108.272671) + (xy 84.56591 108.407513) + (xy 84.565909 108.407517) + (xy 84.5595 108.467127) + (xy 84.5595 108.467134) + (xy 84.5595 108.467135) + (xy 84.5595 109.11287) + (xy 84.559501 109.112879) + (xy 84.566367 109.176751) + (xy 84.566367 109.203257) + (xy 84.565909 109.207516) + (xy 84.565909 109.207517) + (xy 84.5595 109.267127) + (xy 84.5595 109.267132) + (xy 84.5595 109.267133) + (xy 84.5595 109.91287) + (xy 84.559501 109.912876) + (xy 84.565908 109.972483) + (xy 84.616202 110.107328) + (xy 84.616204 110.107331) + (xy 84.684238 110.198213) + (xy 84.708655 110.263677) + (xy 84.693803 110.33195) + (xy 84.644398 110.381356) + (xy 84.597125 110.395927) + (xy 84.41387 110.413975) + (xy 84.225266 110.471188) + (xy 84.051467 110.564086) + (xy 84.046399 110.567473) + (xy 84.045305 110.565836) + (xy 83.989337 110.589596) + (xy 83.920471 110.577795) + (xy 83.903843 110.567109) + (xy 83.903601 110.567473) + (xy 83.898532 110.564086) + (xy 83.724733 110.471188) + (xy 83.724727 110.471186) + (xy 83.536132 110.413976) + (xy 83.536129 110.413975) + (xy 83.34 110.394659) + (xy 83.14387 110.413975) + (xy 83.088278 110.430839) + (xy 82.955273 110.471186) + (xy 82.95527 110.471187) + (xy 82.955268 110.471188) + (xy 82.887952 110.507169) + (xy 82.81955 110.52141) + (xy 82.754306 110.496409) + (xy 82.712936 110.440104) + (xy 82.7055 110.39781) + (xy 82.7055 108.057843) + (xy 82.725185 107.990804) + (xy 82.777989 107.945049) + (xy 82.847147 107.935105) + (xy 82.887948 107.948483) + (xy 82.965273 107.989814) + (xy 83.153868 108.047024) + (xy 83.35 108.066341) + (xy 83.546132 108.047024) + (xy 83.734727 107.989814) + (xy 83.908538 107.89691) + (xy 83.908544 107.896904) + (xy 83.913607 107.893523) + (xy 83.914703 107.895164) + (xy 83.970639 107.871405) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 90.481388 106.145185) + (xy 90.527143 106.197989) + (xy 90.537087 106.267147) + (xy 90.513615 106.323811) + (xy 90.456649 106.399906) + (xy 90.456645 106.399913) + (xy 90.406403 106.53462) + (xy 90.406401 106.534627) + (xy 90.4 106.594155) + (xy 90.4 107.192) + (xy 91.266314 107.192) + (xy 91.240507 107.232156) + (xy 91.2 107.370111) + (xy 91.2 107.513889) + (xy 91.240507 107.651844) + (xy 91.266314 107.692) + (xy 90.4 107.692) + (xy 90.4 108.289844) + (xy 90.406401 108.349372) + (xy 90.406403 108.349379) + (xy 90.456645 108.484086) + (xy 90.456649 108.484093) + (xy 90.542809 108.599187) + (xy 90.542812 108.59919) + (xy 90.657906 108.68535) + (xy 90.657913 108.685354) + (xy 90.79262 108.735596) + (xy 90.792627 108.735598) + (xy 90.828218 108.739425) + (xy 90.892769 108.766163) + (xy 90.932618 108.823555) + (xy 90.935111 108.89338) + (xy 90.899459 108.953469) + (xy 90.886088 108.964287) + (xy 90.860861 108.981951) + (xy 90.699954 109.142858) + (xy 90.569432 109.329265) + (xy 90.569431 109.329267) + (xy 90.473261 109.535502) + (xy 90.473258 109.535511) + (xy 90.414366 109.755302) + (xy 90.414364 109.755313) + (xy 90.394532 109.981998) + (xy 90.394532 109.982002) + (xy 90.399061 110.033773) + (xy 90.385294 110.102273) + (xy 90.336678 110.152456) + (xy 90.26865 110.168389) + (xy 90.202806 110.145013) + (xy 90.187852 110.132261) + (xy 89.861803 109.806212) + (xy 89.85198 109.79395) + (xy 89.851759 109.794134) + (xy 89.846786 109.788122) + (xy 89.797776 109.742099) + (xy 89.794977 109.739386) + (xy 89.775477 109.719885) + (xy 89.775471 109.71988) + (xy 89.772286 109.717409) + (xy 89.763434 109.709848) + (xy 89.731582 109.679938) + (xy 89.73158 109.679936) + (xy 89.731577 109.679935) + (xy 89.714029 109.670288) + (xy 89.697763 109.659604) + (xy 89.681932 109.647324) + (xy 89.641849 109.629978) + (xy 89.631363 109.624841) + (xy 89.593094 109.603803) + (xy 89.593092 109.603802) + (xy 89.573693 109.598822) + (xy 89.555281 109.592518) + (xy 89.536898 109.584562) + (xy 89.536892 109.58456) + (xy 89.49376 109.577729) + (xy 89.482322 109.575361) + (xy 89.44002 109.5645) + (xy 89.440019 109.5645) + (xy 89.419984 109.5645) + (xy 89.400586 109.562973) + (xy 89.393162 109.561797) + (xy 89.380805 109.55984) + (xy 89.380804 109.55984) + (xy 89.337325 109.56395) + (xy 89.325656 109.5645) + (xy 89.293505 109.5645) + (xy 89.226466 109.544815) + (xy 89.180711 109.492011) + (xy 89.170285 109.454382) + (xy 89.165369 109.410753) + (xy 89.165368 109.410747) + (xy 89.165368 109.410745) + (xy 89.105789 109.240478) + (xy 89.009816 109.087738) + (xy 88.882262 108.960184) + (xy 88.829374 108.926952) + (xy 88.729523 108.864211) + (xy 88.559254 108.804631) + (xy 88.559249 108.80463) + (xy 88.373081 108.783655) + (xy 88.373345 108.781306) + (xy 88.316961 108.76475) + (xy 88.271206 108.711946) + (xy 88.26 108.660435) + (xy 88.26 108.50995) + (xy 88.279685 108.442911) + (xy 88.296309 108.42228) + (xy 88.620774 108.097815) + (xy 88.682095 108.064333) + (xy 88.708453 108.061499) + (xy 88.977871 108.061499) + (xy 88.977872 108.061499) + (xy 89.037483 108.055091) + (xy 89.172331 108.004796) + (xy 89.287546 107.918546) + (xy 89.373796 107.803331) + (xy 89.424091 107.668483) + (xy 89.4305 107.608873) + (xy 89.430499 106.513128) + (xy 89.424091 106.453517) + (xy 89.413699 106.425655) + (xy 89.373797 106.318671) + (xy 89.369546 106.310886) + (xy 89.37227 106.309398) + (xy 89.353229 106.258357) + (xy 89.368075 106.190082) + (xy 89.417476 106.140673) + (xy 89.476912 106.1255) + (xy 90.414349 106.1255) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 93.530703 86.515739) + (xy 93.537181 86.521771) + (xy 94.588181 87.572771) + (xy 94.621666 87.634094) + (xy 94.6245 87.660452) + (xy 94.6245 90.341255) + (xy 94.622775 90.356872) + (xy 94.623061 90.356899) + (xy 94.622326 90.364665) + (xy 94.624439 90.431872) + (xy 94.6245 90.435767) + (xy 94.6245 90.463357) + (xy 94.625003 90.467335) + (xy 94.625918 90.478967) + (xy 94.62729 90.522624) + (xy 94.627291 90.522627) + (xy 94.63288 90.541867) + (xy 94.636824 90.560911) + (xy 94.639336 90.580792) + (xy 94.655414 90.621403) + (xy 94.659197 90.632452) + (xy 94.671381 90.674388) + (xy 94.68158 90.691634) + (xy 94.690138 90.709103) + (xy 94.697514 90.727732) + (xy 94.723181 90.76306) + (xy 94.729593 90.772821) + (xy 94.751828 90.810417) + (xy 94.751833 90.810424) + (xy 94.76599 90.82458) + (xy 94.778628 90.839376) + (xy 94.790405 90.855586) + (xy 94.790406 90.855587) + (xy 94.824057 90.883425) + (xy 94.832698 90.891288) + (xy 96.273197 92.331788) + (xy 96.283022 92.344051) + (xy 96.283243 92.343869) + (xy 96.288211 92.349874) + (xy 96.337222 92.395899) + (xy 96.340021 92.398612) + (xy 96.359522 92.418114) + (xy 96.359526 92.418117) + (xy 96.359529 92.41812) + (xy 96.362702 92.420581) + (xy 96.371574 92.428159) + (xy 96.403418 92.458062) + (xy 96.420976 92.467714) + (xy 96.437235 92.478395) + (xy 96.453064 92.490673) + (xy 96.493155 92.508021) + (xy 96.503626 92.513151) + (xy 96.516419 92.520184) + (xy 96.541902 92.534194) + (xy 96.541904 92.534195) + (xy 96.541908 92.534197) + (xy 96.561316 92.53918) + (xy 96.579719 92.545481) + (xy 96.598101 92.553436) + (xy 96.598102 92.553436) + (xy 96.598104 92.553437) + (xy 96.64125 92.56027) + (xy 96.652672 92.562636) + (xy 96.694981 92.5735) + (xy 96.694987 92.5735) + (xy 96.696226 92.573657) + (xy 96.697132 92.574052) + (xy 96.702537 92.57544) + (xy 96.702313 92.576311) + (xy 96.760269 92.60159) + (xy 96.799044 92.659713) + (xy 96.80024 92.729572) + (xy 96.793064 92.749083) + (xy 96.770099 92.79833) + (xy 96.770094 92.798344) + (xy 96.708938 93.026586) + (xy 96.708936 93.026596) + (xy 96.688341 93.261999) + (xy 96.688341 93.262) + (xy 96.708936 93.497403) + (xy 96.708938 93.497413) + (xy 96.770094 93.725655) + (xy 96.770096 93.725659) + (xy 96.770097 93.725663) + (xy 96.869965 93.93983) + (xy 96.869967 93.939834) + (xy 96.940429 94.040463) + (xy 97.001033 94.127015) + (xy 97.005501 94.133395) + (xy 97.005506 94.133402) + (xy 97.172597 94.300493) + (xy 97.172603 94.300498) + (xy 97.358158 94.430425) + (xy 97.401783 94.485002) + (xy 97.408977 94.5545) + (xy 97.377454 94.616855) + (xy 97.358158 94.633575) + (xy 97.172597 94.763505) + (xy 97.005508 94.930595) + (xy 97.005501 94.930604) + (xy 96.98686 94.957225) + (xy 96.932282 95.000849) + (xy 96.862783 95.00804) + (xy 96.806248 94.981644) + (xy 96.775946 94.956577) + (xy 96.767304 94.948713) + (xy 93.361819 91.543228) + (xy 93.328334 91.481905) + (xy 93.3255 91.455547) + (xy 93.3255 86.609452) + (xy 93.345185 86.542413) + (xy 93.397989 86.496658) + (xy 93.467147 86.486714) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 78.95223 86.751185) + (xy 78.972872 86.767819) + (xy 78.973129 86.768076) + (xy 78.973133 86.768079) + (xy 78.973135 86.768081) + (xy 79.114602 86.851744) + (xy 79.156224 86.863836) + (xy 79.272426 86.897597) + (xy 79.272429 86.897597) + (xy 79.272431 86.897598) + (xy 79.309306 86.9005) + (xy 80.4755 86.9005) + (xy 80.542539 86.920185) + (xy 80.588294 86.972989) + (xy 80.5995 87.0245) + (xy 80.5995 87.265701) + (xy 80.602401 87.302567) + (xy 80.602402 87.302573) + (xy 80.648254 87.460393) + (xy 80.648255 87.460396) + (xy 80.731917 87.601862) + (xy 80.731923 87.60187) + (xy 80.848129 87.718076) + (xy 80.848133 87.718079) + (xy 80.848135 87.718081) + (xy 80.989602 87.801744) + (xy 81.031224 87.813836) + (xy 81.147426 87.847597) + (xy 81.147429 87.847597) + (xy 81.147431 87.847598) + (xy 81.184306 87.8505) + (xy 81.740852 87.8505) + (xy 81.807891 87.870185) + (xy 81.853646 87.922989) + (xy 81.86359 87.992147) + (xy 81.834565 88.055703) + (xy 81.828533 88.062181) + (xy 78.21218 91.678533) + (xy 78.150857 91.712018) + (xy 78.081165 91.707034) + (xy 78.025232 91.665162) + (xy 78.000815 91.599698) + (xy 78.000499 91.590852) + (xy 78.000499 90.592129) + (xy 78.000498 90.592123) + (xy 78.000497 90.592116) + (xy 77.994091 90.532517) + (xy 77.990402 90.522627) + (xy 77.943797 90.397671) + (xy 77.943793 90.397664) + (xy 77.857547 90.282455) + (xy 77.857544 90.282452) + (xy 77.742332 90.196204) + (xy 77.737635 90.193639) + (xy 77.688232 90.144232) + (xy 77.673382 90.075958) + (xy 77.693257 90.016989) + (xy 77.824173 89.816607) + (xy 77.924063 89.588881) + (xy 77.985108 89.347821) + (xy 77.985109 89.347812) + (xy 78.005643 89.100005) + (xy 78.005643 89.099994) + (xy 77.985109 88.852187) + (xy 77.985107 88.852175) + (xy 77.924063 88.611118) + (xy 77.824173 88.383393) + (xy 77.688166 88.175217) + (xy 77.666557 88.151744) + (xy 77.519744 87.992262) + (xy 77.323509 87.839526) + (xy 77.323507 87.839525) + (xy 77.323506 87.839524) + (xy 77.104811 87.721172) + (xy 77.104802 87.721169) + (xy 76.869616 87.640429) + (xy 76.624335 87.5995) + (xy 76.3945 87.5995) + (xy 76.327461 87.579815) + (xy 76.281706 87.527011) + (xy 76.2705 87.4755) + (xy 76.2705 87.283087) + (xy 76.290185 87.216048) + (xy 76.329402 87.177548) + (xy 76.376156 87.148712) + (xy 76.469819 87.055049) + (xy 76.531142 87.021564) + (xy 76.600834 87.026548) + (xy 76.645181 87.055049) + (xy 76.738844 87.148712) + (xy 76.888166 87.240814) + (xy 77.054703 87.295999) + (xy 77.157491 87.3065) + (xy 77.782508 87.306499) + (xy 77.782516 87.306498) + (xy 77.782519 87.306498) + (xy 77.838802 87.300748) + (xy 77.885297 87.295999) + (xy 78.051834 87.240814) + (xy 78.201156 87.148712) + (xy 78.325212 87.024656) + (xy 78.417314 86.875334) + (xy 78.436811 86.816493) + (xy 78.476584 86.759051) + (xy 78.5411 86.732228) + (xy 78.554517 86.7315) + (xy 78.885191 86.7315) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 96.715392 82.56665) + (xy 96.754249 82.624719) + (xy 96.755714 82.693944) + (xy 96.713363 82.851999) + (xy 96.713364 82.852) + (xy 97.610314 82.852) + (xy 97.584507 82.892156) + (xy 97.544 83.030111) + (xy 97.544 83.173889) + (xy 97.584507 83.311844) + (xy 97.610314 83.352) + (xy 96.713364 83.352) + (xy 96.770567 83.565486) + (xy 96.77057 83.565492) + (xy 96.870399 83.779578) + (xy 97.005894 83.973082) + (xy 97.172917 84.140105) + (xy 97.358595 84.270119) + (xy 97.402219 84.324696) + (xy 97.409412 84.394195) + (xy 97.37789 84.456549) + (xy 97.358595 84.473269) + (xy 97.172594 84.603508) + (xy 97.005505 84.770597) + (xy 96.869965 84.964169) + (xy 96.869964 84.964171) + (xy 96.770098 85.178335) + (xy 96.770094 85.178344) + (xy 96.708938 85.406586) + (xy 96.708936 85.406596) + (xy 96.688341 85.641999) + (xy 96.688341 85.642) + (xy 96.708936 85.877403) + (xy 96.708938 85.877413) + (xy 96.770094 86.105655) + (xy 96.770096 86.105659) + (xy 96.770097 86.105663) + (xy 96.850004 86.277023) + (xy 96.869965 86.31983) + (xy 96.869967 86.319834) + (xy 96.978281 86.474521) + (xy 97.005501 86.513396) + (xy 97.005506 86.513402) + (xy 97.172597 86.680493) + (xy 97.172603 86.680498) + (xy 97.358158 86.810425) + (xy 97.401783 86.865002) + (xy 97.408977 86.9345) + (xy 97.377454 86.996855) + (xy 97.358158 87.013575) + (xy 97.172597 87.143505) + (xy 97.005505 87.310597) + (xy 96.869965 87.504169) + (xy 96.869964 87.504171) + (xy 96.770098 87.718335) + (xy 96.770094 87.718344) + (xy 96.708938 87.946586) + (xy 96.708936 87.946596) + (xy 96.688341 88.181999) + (xy 96.688341 88.182) + (xy 96.708936 88.417403) + (xy 96.708938 88.417413) + (xy 96.770094 88.645655) + (xy 96.770096 88.645659) + (xy 96.770097 88.645663) + (xy 96.853155 88.823781) + (xy 96.869965 88.85983) + (xy 96.869967 88.859834) + (xy 96.978281 89.014521) + (xy 97.005501 89.053396) + (xy 97.005506 89.053402) + (xy 97.172597 89.220493) + (xy 97.172603 89.220498) + (xy 97.358158 89.350425) + (xy 97.401783 89.405002) + (xy 97.408977 89.4745) + (xy 97.377454 89.536855) + (xy 97.358158 89.553575) + (xy 97.172597 89.683505) + (xy 97.005505 89.850597) + (xy 96.869965 90.044169) + (xy 96.869964 90.044171) + (xy 96.770098 90.258335) + (xy 96.770094 90.258344) + (xy 96.708938 90.486586) + (xy 96.708936 90.486596) + (xy 96.690942 90.692269) + (xy 96.665489 90.757337) + (xy 96.608898 90.798316) + (xy 96.539136 90.802194) + (xy 96.479733 90.769142) + (xy 95.911819 90.201228) + (xy 95.878334 90.139905) + (xy 95.8755 90.113547) + (xy 95.8755 87.432737) + (xy 95.877224 87.417123) + (xy 95.876938 87.417096) + (xy 95.877672 87.409333) + (xy 95.875561 87.342143) + (xy 95.8755 87.338249) + (xy 95.8755 87.310651) + (xy 95.8755 87.31065) + (xy 95.874997 87.30667) + (xy 95.87408 87.295021) + (xy 95.872709 87.251374) + (xy 95.872709 87.251372) + (xy 95.86712 87.232137) + (xy 95.863174 87.213084) + (xy 95.860664 87.193208) + (xy 95.844578 87.152581) + (xy 95.840803 87.141554) + (xy 95.828617 87.09961) + (xy 95.818421 87.082369) + (xy 95.80986 87.064893) + (xy 95.808308 87.060975) + (xy 95.802486 87.046268) + (xy 95.776809 87.010926) + (xy 95.770412 87.00119) + (xy 95.74817 86.963579) + (xy 95.748167 86.963576) + (xy 95.748165 86.963573) + (xy 95.734005 86.949413) + (xy 95.72137 86.93462) + (xy 95.709593 86.918412) + (xy 95.675945 86.890576) + (xy 95.667304 86.882713) + (xy 94.261819 85.477228) + (xy 94.228334 85.415905) + (xy 94.2255 85.389547) + (xy 94.2255 84.344854) + (xy 94.244507 84.278881) + (xy 94.246296 84.276035) + (xy 94.295493 84.197738) + (xy 94.325788 84.149524) + (xy 94.325825 84.149418) + (xy 94.385368 83.979255) + (xy 94.385369 83.979249) + (xy 94.405565 83.800003) + (xy 94.405565 83.799996) + (xy 94.385369 83.62075) + (xy 94.385368 83.620745) + (xy 94.346998 83.511091) + (xy 94.325789 83.450478) + (xy 94.319064 83.439776) + (xy 94.286582 83.38808) + (xy 94.229816 83.297738) + (xy 94.130581 83.198503) + (xy 94.097096 83.13718) + (xy 94.10208 83.067488) + (xy 94.143952 83.011555) + (xy 94.184237 82.993239) + (xy 94.18387 82.992129) + (xy 94.232543 82.976) + (xy 94.356834 82.934814) + (xy 94.506156 82.842712) + (xy 94.599819 82.749049) + (xy 94.661142 82.715564) + (xy 94.730834 82.720548) + (xy 94.775181 82.749049) + (xy 94.868844 82.842712) + (xy 95.018166 82.934814) + (xy 95.184703 82.989999) + (xy 95.287491 83.0005) + (xy 95.912508 83.000499) + (xy 95.912516 83.000498) + (xy 95.912519 83.000498) + (xy 95.983579 82.993239) + (xy 96.015297 82.989999) + (xy 96.181834 82.934814) + (xy 96.331156 82.842712) + (xy 96.455212 82.718656) + (xy 96.530401 82.596753) + (xy 96.582347 82.55003) + (xy 96.65131 82.538807) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 83.103086 69.721684) + (xy 83.123728 69.738318) + (xy 83.928319 70.54291) + (xy 83.961804 70.604233) + (xy 83.95682 70.673925) + (xy 83.914948 70.729858) + (xy 83.875234 70.749667) + (xy 83.790604 70.774254) + (xy 83.790603 70.774255) + (xy 83.649137 70.857917) + (xy 83.642969 70.862702) + (xy 83.641072 70.860256) + (xy 83.592358 70.886857) + (xy 83.522666 70.881873) + (xy 83.490296 70.861069) + (xy 83.489031 70.862702) + (xy 83.482862 70.857917) + (xy 83.385629 70.800414) + (xy 83.341398 70.774256) + (xy 83.341397 70.774255) + (xy 83.341396 70.774255) + (xy 83.341393 70.774254) + (xy 83.183573 70.728402) + (xy 83.183567 70.728401) + (xy 83.146701 70.7255) + (xy 83.146694 70.7255) + (xy 82.715306 70.7255) + (xy 82.715298 70.7255) + (xy 82.678432 70.728401) + (xy 82.678426 70.728402) + (xy 82.520606 70.774254) + (xy 82.520603 70.774255) + (xy 82.379137 70.857917) + (xy 82.379129 70.857923) + (xy 82.262923 70.974129) + (xy 82.262917 70.974137) + (xy 82.179255 71.115603) + (xy 82.179254 71.115606) + (xy 82.133402 71.273426) + (xy 82.133401 71.273432) + (xy 82.1305 71.310298) + (xy 82.1305 72.533547) + (xy 82.110815 72.600586) + (xy 82.094181 72.621228) + (xy 79.955215 74.760193) + (xy 79.893892 74.793678) + (xy 79.8242 74.788694) + (xy 79.768267 74.746822) + (xy 79.765959 74.743635) + (xy 79.631494 74.551597) + (xy 79.464402 74.384506) + (xy 79.464401 74.384505) + (xy 79.278405 74.254269) + (xy 79.234781 74.199692) + (xy 79.227588 74.130193) + (xy 79.25911 74.067839) + (xy 79.278405 74.051119) + (xy 79.464082 73.921105) + (xy 79.631105 73.754082) + (xy 79.7666 73.560578) + (xy 79.866429 73.346492) + (xy 79.866432 73.346486) + (xy 79.923636 73.133) + (xy 79.026686 73.133) + (xy 79.052493 73.092844) + (xy 79.093 72.954889) + (xy 79.093 72.811111) + (xy 79.052493 72.673156) + (xy 79.026686 72.633) + (xy 79.923636 72.633) + (xy 79.923635 72.632999) + (xy 79.866432 72.419513) + (xy 79.866429 72.419507) + (xy 79.7666 72.205422) + (xy 79.766599 72.20542) + (xy 79.631113 72.011926) + (xy 79.631108 72.01192) + (xy 79.464082 71.844894) + (xy 79.270578 71.709399) + (xy 79.056492 71.60957) + (xy 79.056485 71.609567) + (xy 78.925233 71.574398) + (xy 78.865573 71.538033) + (xy 78.835044 71.475186) + (xy 78.843339 71.40581) + (xy 78.869641 71.366948) + (xy 79.474771 70.761819) + (xy 79.536094 70.728334) + (xy 79.562452 70.7255) + (xy 81.417257 70.7255) + (xy 81.432877 70.727224) + (xy 81.432904 70.726939) + (xy 81.44066 70.727671) + (xy 81.440667 70.727673) + (xy 81.507873 70.725561) + (xy 81.511768 70.7255) + (xy 81.539346 70.7255) + (xy 81.53935 70.7255) + (xy 81.543324 70.724997) + (xy 81.554963 70.72408) + (xy 81.598627 70.722709) + (xy 81.617869 70.717117) + (xy 81.636912 70.713174) + (xy 81.656792 70.710664) + (xy 81.697401 70.694585) + (xy 81.708444 70.690803) + (xy 81.75039 70.678618) + (xy 81.767629 70.668422) + (xy 81.785103 70.659862) + (xy 81.803727 70.652488) + (xy 81.803727 70.652487) + (xy 81.803732 70.652486) + (xy 81.839083 70.6268) + (xy 81.848814 70.620408) + (xy 81.88642 70.59817) + (xy 81.900589 70.583999) + (xy 81.915379 70.571368) + (xy 81.931587 70.559594) + (xy 81.959438 70.525926) + (xy 81.967279 70.517309) + (xy 82.746271 69.738318) + (xy 82.807594 69.704833) + (xy 82.833952 69.701999) + (xy 83.036047 69.701999) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 87.919459 69.700313) + (xy 87.964229 69.753955) + (xy 87.9745 69.80337) + (xy 87.9745 70.115852) + (xy 87.954815 70.182891) + (xy 87.902011 70.228646) + (xy 87.832853 70.23859) + (xy 87.769297 70.209565) + (xy 87.762819 70.203533) + (xy 87.560831 70.001545) + (xy 87.527346 69.940222) + (xy 87.53233 69.87053) + (xy 87.574202 69.814597) + (xy 87.60951 69.796157) + (xy 87.645122 69.784356) + (xy 87.645124 69.784356) + (xy 87.785403 69.697831) + (xy 87.852795 69.679391) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 99.477445 65.016501) + (xy 99.502108 65.016501) + (xy 99.564519 65.016501) + (xy 99.571471 65.016696) + (xy 99.608993 65.018803) + (xy 99.874724 65.033726) + (xy 99.888523 65.03528) + (xy 100.184524 65.085573) + (xy 100.198081 65.088667) + (xy 100.486587 65.171785) + (xy 100.499711 65.176378) + (xy 100.777089 65.291271) + (xy 100.789611 65.2973) + (xy 100.993869 65.41019) + (xy 101.052391 65.442534) + (xy 101.064165 65.449932) + (xy 101.309025 65.623669) + (xy 101.319897 65.632339) + (xy 101.525012 65.815641) + (xy 101.543766 65.8324) + (xy 101.553597 65.842231) + (xy 101.607094 65.902094) + (xy 101.75366 66.066102) + (xy 101.76233 66.076974) + (xy 101.936067 66.321834) + (xy 101.943465 66.333608) + (xy 102.088695 66.596381) + (xy 102.094728 66.60891) + (xy 102.209621 66.886288) + (xy 102.214214 66.899412) + (xy 102.297332 67.187918) + (xy 102.300426 67.201475) + (xy 102.350717 67.497465) + (xy 102.352274 67.511283) + (xy 102.362244 67.688819) + (xy 102.368897 67.807289) + (xy 102.369304 67.814527) + (xy 102.369499 67.82148) + (xy 102.369499 103.57026) + (xy 102.3671 103.594534) + (xy 102.366284 103.598617) + (xy 102.366284 103.59862) + (xy 102.369239 103.644206) + (xy 102.369499 103.652219) + (xy 102.3695 103.672226) + (xy 102.369384 103.672226) + (xy 102.369431 103.682309) + (xy 102.367393 103.715073) + (xy 102.361501 103.745884) + (xy 102.350637 103.779137) + (xy 102.337201 103.807484) + (xy 102.318337 103.836951) + (xy 102.29821 103.861026) + (xy 102.292253 103.866549) + (xy 102.281372 103.875542) + (xy 102.183048 103.94779) + (xy 102.062484 104.0755) + (xy 101.98846 104.189672) + (xy 101.96465 104.210136) + (xy 101.963883 104.229464) + (xy 101.960894 104.237418) + (xy 101.899555 104.38504) + (xy 101.862532 104.556728) + (xy 101.857092 104.732256) + (xy 101.857093 104.732263) + (xy 101.857093 104.732266) + (xy 101.866386 104.793575) + (xy 101.883413 104.905911) + (xy 101.940627 105.071948) + (xy 101.940628 105.071949) + (xy 101.94063 105.071954) + (xy 102.026865 105.224951) + (xy 102.139289 105.359878) + (xy 102.139293 105.359881) + (xy 102.160749 105.377795) + (xy 102.173608 105.39021) + (xy 102.197242 105.416574) + (xy 102.197245 105.416577) + (xy 102.237078 105.442569) + (xy 102.248693 105.451152) + (xy 102.258181 105.459058) + (xy 102.271058 105.468575) + (xy 102.291694 105.486286) + (xy 102.313323 105.510434) + (xy 102.333288 105.539658) + (xy 102.34792 105.568589) + (xy 102.359626 105.601986) + (xy 102.366258 105.633718) + (xy 102.368956 105.669647) + (xy 102.369304 105.678932) + (xy 102.369304 105.69587) + (xy 102.369108 105.702832) + (xy 102.366393 105.7511) + (xy 102.366693 105.752537) + (xy 102.369304 105.777851) + (xy 102.369499 126.225198) + (xy 102.369499 126.234519) + (xy 102.369304 126.241472) + (xy 102.352274 126.544716) + (xy 102.350717 126.558534) + (xy 102.300426 126.854524) + (xy 102.297332 126.868081) + (xy 102.214214 127.156587) + (xy 102.209621 127.169711) + (xy 102.094728 127.447089) + (xy 102.088695 127.459618) + (xy 101.943465 127.722391) + (xy 101.936067 127.734165) + (xy 101.76233 127.979025) + (xy 101.75366 127.989897) + (xy 101.553599 128.213766) + (xy 101.543766 128.223599) + (xy 101.319897 128.42366) + (xy 101.309025 128.43233) + (xy 101.064165 128.606067) + (xy 101.052391 128.613465) + (xy 100.789618 128.758695) + (xy 100.777089 128.764728) + (xy 100.499711 128.879621) + (xy 100.486587 128.884214) + (xy 100.198081 128.967332) + (xy 100.184524 128.970426) + (xy 99.888534 129.020717) + (xy 99.874716 129.022274) + (xy 99.571472 129.039304) + (xy 99.564519 129.039499) + (xy 82.482861 129.039499) + (xy 82.4437 129.028) + (xy 78.899366 129.028) + (xy 78.883497 129.036665) + (xy 78.857139 129.039499) + (xy 75.949481 129.039499) + (xy 75.942528 129.039304) + (xy 75.639283 129.022274) + (xy 75.625465 129.020717) + (xy 75.329475 128.970426) + (xy 75.315918 128.967332) + (xy 75.027412 128.884214) + (xy 75.014288 128.879621) + (xy 74.73691 128.764728) + (xy 74.724381 128.758695) + (xy 74.461608 128.613465) + (xy 74.449834 128.606067) + (xy 74.339809 128.528) + (xy 78.92 128.528) + (xy 80.42 128.528) + (xy 80.42 127.678) + (xy 80.92 127.678) + (xy 80.92 128.528) + (xy 82.42 128.528) + (xy 82.42 128.130172) + (xy 82.419999 128.130155) + (xy 82.413598 128.070627) + (xy 82.413596 128.07062) + (xy 82.363354 127.935913) + (xy 82.36335 127.935906) + (xy 82.27719 127.820812) + (xy 82.277187 127.820809) + (xy 82.162093 127.734649) + (xy 82.162086 127.734645) + (xy 82.027379 127.684403) + (xy 82.027372 127.684401) + (xy 81.967844 127.678) + (xy 80.92 127.678) + (xy 80.42 127.678) + (xy 79.372155 127.678) + (xy 79.312627 127.684401) + (xy 79.31262 127.684403) + (xy 79.177913 127.734645) + (xy 79.177906 127.734649) + (xy 79.062812 127.820809) + (xy 79.062809 127.820812) + (xy 78.976649 127.935906) + (xy 78.976645 127.935913) + (xy 78.926403 128.07062) + (xy 78.926401 128.070627) + (xy 78.92 128.130155) + (xy 78.92 128.528) + (xy 74.339809 128.528) + (xy 74.204974 128.43233) + (xy 74.194102 128.42366) + (xy 73.970233 128.223599) + (xy 73.9604 128.213766) + (xy 73.958414 128.211544) + (xy 73.760339 127.989897) + (xy 73.751669 127.979025) + (xy 73.721079 127.935913) + (xy 73.578275 127.734649) + (xy 73.577932 127.734165) + (xy 73.570534 127.722391) + (xy 73.425304 127.459618) + (xy 73.419271 127.447089) + (xy 73.304378 127.169711) + (xy 73.299785 127.156587) + (xy 73.232543 126.923188) + (xy 73.216666 126.868079) + (xy 73.213573 126.854524) + (xy 73.206389 126.812242) + (xy 73.16328 126.558523) + (xy 73.161726 126.544724) + (xy 73.144696 126.241471) + (xy 73.144501 126.234519) + (xy 73.144501 126.072) + (xy 74.683474 126.072) + (xy 74.703547 126.327064) + (xy 74.703547 126.327067) + (xy 74.703548 126.32707) + (xy 74.752868 126.532499) + (xy 74.763279 126.575864) + (xy 74.861188 126.812239) + (xy 74.86119 126.812242) + (xy 74.994875 127.030396) + (xy 74.994878 127.030401) + (xy 75.010379 127.04855) + (xy 75.161044 127.224956) + (xy 75.255935 127.306) + (xy 75.355598 127.391121) + (xy 75.3556 127.391122) + (xy 75.355601 127.391123) + (xy 75.457432 127.453525) + (xy 75.573757 127.524809) + (xy 75.57376 127.524811) + (xy 75.810135 127.62272) + (xy 75.81014 127.622722) + (xy 76.05893 127.682452) + (xy 76.250137 127.6975) + (xy 76.250145 127.6975) + (xy 76.377855 127.6975) + (xy 76.377863 127.6975) + (xy 76.56907 127.682452) + (xy 76.766719 127.635) + (xy 82.764417 127.635) + (xy 82.784699 127.840932) + (xy 82.803185 127.901872) + (xy 82.844768 128.038954) + (xy 82.942315 128.22145) + (xy 82.942317 128.221452) + (xy 83.073589 128.38141) + (xy 83.16814 128.459005) + (xy 83.23355 128.512685) + (xy 83.416046 128.610232) + (xy 83.614066 128.6703) + (xy 83.614065 128.6703) + (xy 83.652647 128.6741) + (xy 83.768392 128.6855) + (xy 83.768395 128.6855) + (xy 83.871605 128.6855) + (xy 83.871608 128.6855) + (xy 84.025934 128.6703) + (xy 84.223954 128.610232) + (xy 84.40645 128.512685) + (xy 84.56641 128.38141) + (xy 84.697685 128.22145) + (xy 84.795232 128.038954) + (xy 84.8553 127.840934) + (xy 84.875583 127.635) + (xy 84.8553 127.429066) + (xy 84.795232 127.231046) + (xy 84.697685 127.04855) + (xy 84.594804 126.923188) + (xy 84.56641 126.888589) + (xy 84.406452 126.757317) + (xy 84.406453 126.757317) + (xy 84.40645 126.757315) + (xy 84.223954 126.659768) + (xy 84.025934 126.5997) + (xy 84.025932 126.599699) + (xy 84.025934 126.599699) + (xy 83.903905 126.587681) + (xy 83.871608 126.5845) + (xy 83.768392 126.5845) + (xy 83.734623 126.587826) + (xy 83.614067 126.599699) + (xy 83.416043 126.659769) + (xy 83.305898 126.718643) + (xy 83.23355 126.757315) + (xy 83.233548 126.757316) + (xy 83.233547 126.757317) + (xy 83.073589 126.888589) + (xy 82.957209 127.030401) + (xy 82.942315 127.04855) + (xy 82.914815 127.099998) + (xy 82.844769 127.231043) + (xy 82.784699 127.429067) + (xy 82.764417 127.635) + (xy 76.766719 127.635) + (xy 76.81786 127.622722) + (xy 76.936051 127.573765) + (xy 77.054239 127.524811) + (xy 77.05424 127.52481) + (xy 77.054243 127.524809) + (xy 77.272399 127.391123) + (xy 77.466956 127.224956) + (xy 77.633123 127.030399) + (xy 77.766809 126.812243) + (xy 77.773283 126.796615) + (xy 77.848105 126.615977) + (xy 77.864722 126.57586) + (xy 77.924452 126.32707) + (xy 77.944526 126.072) + (xy 77.924452 125.81693) + (xy 77.864722 125.56814) + (xy 77.842673 125.514909) + (xy 77.766811 125.33176) + (xy 77.766809 125.331757) + (xy 77.705673 125.231992) + (xy 77.633123 125.113601) + (xy 77.633122 125.1136) + (xy 77.633121 125.113598) + (xy 77.573319 125.043579) + (xy 77.466956 124.919044) + (xy 77.34358 124.813671) + (xy 77.272401 124.752878) + (xy 77.272396 124.752875) + (xy 77.054242 124.61919) + (xy 77.054239 124.619188) + (xy 76.817864 124.521279) + (xy 76.779119 124.511977) + (xy 76.56907 124.461548) + (xy 76.569068 124.461547) + (xy 76.569065 124.461547) + (xy 76.377868 124.4465) + (xy 76.377863 124.4465) + (xy 76.250137 124.4465) + (xy 76.250131 124.4465) + (xy 76.058934 124.461547) + (xy 75.810135 124.521279) + (xy 75.57376 124.619188) + (xy 75.573757 124.61919) + (xy 75.355603 124.752875) + (xy 75.355598 124.752878) + (xy 75.161044 124.919044) + (xy 74.994878 125.113598) + (xy 74.994875 125.113603) + (xy 74.86119 125.331757) + (xy 74.861188 125.33176) + (xy 74.763279 125.568135) + (xy 74.703547 125.816935) + (xy 74.683474 126.072) + (xy 73.144501 126.072) + (xy 73.144501 122.4) + (xy 73.875001 122.4) + (xy 73.875001 122.449986) + (xy 73.885494 122.552697) + (xy 73.940641 122.719119) + (xy 73.940643 122.719124) + (xy 74.032684 122.868345) + (xy 74.156654 122.992315) + (xy 74.305875 123.084356) + (xy 74.30588 123.084358) + (xy 74.472302 123.139505) + (xy 74.472309 123.139506) + (xy 74.575019 123.149999) + (xy 74.849999 123.149999) + (xy 75.35 123.149999) + (xy 75.624972 123.149999) + (xy 75.624986 123.149998) + (xy 75.727697 123.139505) + (xy 75.894119 123.084358) + (xy 75.894124 123.084356) + (xy 76.043346 122.992315) + (xy 76.049007 122.987839) + (xy 76.05005 122.989158) + (xy 76.10355 122.959936) + (xy 76.173242 122.964912) + (xy 76.19502 122.97556) + (xy 76.330875 123.059356) + (xy 76.33088 123.059358) + (xy 76.497302 123.114505) + (xy 76.497309 123.114506) + (xy 76.600019 123.124999) + (xy 76.849999 123.124999) + (xy 76.85 123.124998) + (xy 76.85 122.3625) + (xy 76.368 122.3625) + (xy 76.366819 122.363681) + (xy 76.305496 122.397166) + (xy 76.279138 122.4) + (xy 75.35 122.4) + (xy 75.35 123.149999) + (xy 74.849999 123.149999) + (xy 74.85 123.149998) + (xy 74.85 122.4) + (xy 73.875001 122.4) + (xy 73.144501 122.4) + (xy 73.144501 120.550001) + (xy 73.8745 120.550001) + (xy 73.874501 120.550019) + (xy 73.885 120.652796) + (xy 73.885001 120.652799) + (xy 73.940185 120.819331) + (xy 73.940187 120.819336) + (xy 73.95797 120.848167) + (xy 74.032288 120.968656) + (xy 74.156344 121.092712) + (xy 74.159628 121.094737) + (xy 74.159653 121.094753) + (xy 74.161445 121.096746) + (xy 74.162011 121.097193) + (xy 74.161934 121.097289) + (xy 74.206379 121.146699) + (xy 74.217603 121.215661) + (xy 74.189761 121.279744) + (xy 74.159665 121.305826) + (xy 74.15666 121.307679) + (xy 74.156655 121.307683) + (xy 74.032684 121.431654) + (xy 73.940643 121.580875) + (xy 73.940641 121.58088) + (xy 73.885494 121.747302) + (xy 73.885493 121.747309) + (xy 73.875 121.850013) + (xy 73.875 121.9) + (xy 75.857 121.9) + (xy 75.858181 121.898819) + (xy 75.919504 121.865334) + (xy 75.945862 121.8625) + (xy 77.226 121.8625) + (xy 77.293039 121.882185) + (xy 77.338794 121.934989) + (xy 77.35 121.9865) + (xy 77.35 123.124999) + (xy 77.599972 123.124999) + (xy 77.599986 123.124998) + (xy 77.702697 123.114505) + (xy 77.869119 123.059358) + (xy 77.869126 123.059355) + (xy 77.989696 122.984986) + (xy 78.057089 122.966545) + (xy 78.123752 122.987467) + (xy 78.142475 123.002843) + (xy 78.156344 123.016712) + (xy 78.305666 123.108814) + (xy 78.472203 123.163999) + (xy 78.574991 123.1745) + (xy 79.164547 123.174499) + (xy 79.231586 123.194183) + (xy 79.252228 123.210818) + (xy 80.008181 123.966771) + (xy 80.041666 124.028094) + (xy 80.0445 124.054452) + (xy 80.0445 124.4315) + (xy 80.024815 124.498539) + (xy 79.972011 124.544294) + (xy 79.9205 124.5555) + (xy 79.372129 124.5555) + (xy 79.372123 124.555501) + (xy 79.312516 124.561908) + (xy 79.177671 124.612202) + (xy 79.177664 124.612206) + (xy 79.062455 124.698452) + (xy 79.062452 124.698455) + (xy 78.976206 124.813664) + (xy 78.976202 124.813671) + (xy 78.925908 124.948517) + (xy 78.919675 125.0065) + (xy 78.919501 125.008123) + (xy 78.9195 125.008135) + (xy 78.9195 126.30387) + (xy 78.919501 126.303876) + (xy 78.925908 126.363483) + (xy 78.976202 126.498328) + (xy 78.976206 126.498335) + (xy 79.062452 126.613544) + (xy 79.062455 126.613547) + (xy 79.177664 126.699793) + (xy 79.177671 126.699797) + (xy 79.312517 126.750091) + (xy 79.312516 126.750091) + (xy 79.319444 126.750835) + (xy 79.372127 126.7565) + (xy 81.967872 126.756499) + (xy 82.027483 126.750091) + (xy 82.162331 126.699796) + (xy 82.277546 126.613546) + (xy 82.363796 126.498331) + (xy 82.414091 126.363483) + (xy 82.4205 126.303873) + (xy 82.420499 125.008128) + (xy 82.414091 124.948517) + (xy 82.403098 124.919044) + (xy 82.363797 124.813671) + (xy 82.363793 124.813664) + (xy 82.277547 124.698455) + (xy 82.277544 124.698452) + (xy 82.162335 124.612206) + (xy 82.162328 124.612202) + (xy 82.027482 124.561908) + (xy 82.027483 124.561908) + (xy 81.967883 124.555501) + (xy 81.967881 124.5555) + (xy 81.967873 124.5555) + (xy 81.967865 124.5555) + (xy 81.4195 124.5555) + (xy 81.352461 124.535815) + (xy 81.306706 124.483011) + (xy 81.2955 124.4315) + (xy 81.2955 123.826737) + (xy 81.297224 123.811123) + (xy 81.296938 123.811096) + (xy 81.297672 123.803333) + (xy 81.295561 123.736144) + (xy 81.2955 123.73225) + (xy 81.2955 123.704651) + (xy 81.2955 123.70465) + (xy 81.294997 123.70067) + (xy 81.29408 123.689021) + (xy 81.292709 123.645373) + (xy 81.287121 123.626139) + (xy 81.283174 123.607081) + (xy 81.280664 123.587208) + (xy 81.27441 123.571413) + (xy 81.264583 123.546592) + (xy 81.260799 123.535539) + (xy 81.248618 123.493615) + (xy 81.248617 123.49361) + (xy 81.23842 123.476368) + (xy 81.229863 123.458902) + (xy 81.222486 123.440268) + (xy 81.196809 123.404926) + (xy 81.190412 123.39519) + (xy 81.16817 123.357579) + (xy 81.168167 123.357576) + (xy 81.168165 123.357573) + (xy 81.154005 123.343413) + (xy 81.14137 123.32862) + (xy 81.129593 123.312412) + (xy 81.095945 123.284576) + (xy 81.087304 123.276713) + (xy 80.361818 122.551227) + (xy 80.328333 122.489904) + (xy 80.325499 122.463555) + (xy 80.325499 121.956) + (xy 82.764417 121.956) + (xy 82.784699 122.161932) + (xy 82.796652 122.201336) + (xy 82.844768 122.359954) + (xy 82.942315 122.54245) + (xy 82.954797 122.557659) + (xy 83.073589 122.70241) + (xy 83.123456 122.743334) + (xy 83.23355 122.833685) + (xy 83.416046 122.931232) + (xy 83.614066 122.9913) + (xy 83.614065 122.9913) + (xy 83.624371 122.992315) + (xy 83.768392 123.0065) + (xy 83.768395 123.0065) + (xy 83.871605 123.0065) + (xy 83.871608 123.0065) + (xy 84.025934 122.9913) + (xy 84.223954 122.931232) + (xy 84.40645 122.833685) + (xy 84.56641 122.70241) + (xy 84.697685 122.54245) + (xy 84.795232 122.359954) + (xy 84.8553 122.161934) + (xy 84.875583 121.956) + (xy 84.8553 121.750066) + (xy 84.795232 121.552046) + (xy 84.697685 121.36955) + (xy 84.645388 121.305826) + (xy 84.56641 121.209589) + (xy 84.448677 121.112969) + (xy 84.40645 121.078315) + (xy 84.223954 120.980768) + (xy 84.025934 120.9207) + (xy 84.025932 120.920699) + (xy 84.025934 120.920699) + (xy 83.906805 120.908966) + (xy 83.871608 120.9055) + (xy 83.768392 120.9055) + (xy 83.730298 120.909251) + (xy 83.614067 120.920699) + (xy 83.416043 120.980769) + (xy 83.33425 121.024489) + (xy 83.23355 121.078315) + (xy 83.233548 121.078316) + (xy 83.233547 121.078317) + (xy 83.073589 121.209589) + (xy 82.942317 121.369547) + (xy 82.942315 121.36955) + (xy 82.906044 121.437408) + (xy 82.844769 121.552043) + (xy 82.784699 121.750067) + (xy 82.764417 121.956) + (xy 80.325499 121.956) + (xy 80.325499 121.884451) + (xy 80.345184 121.817413) + (xy 80.361813 121.796776) + (xy 81.183788 120.974801) + (xy 81.196042 120.964986) + (xy 81.195859 120.964764) + (xy 81.201868 120.959791) + (xy 81.201877 120.959786) + (xy 81.247949 120.910722) + (xy 81.250566 120.908023) + (xy 81.27012 120.888471) + (xy 81.272576 120.885303) + (xy 81.280156 120.876427) + (xy 81.310062 120.844582) + (xy 81.319715 120.82702) + (xy 81.330389 120.81077) + (xy 81.342673 120.794936) + (xy 81.360019 120.75485) + (xy 81.365157 120.744362) + (xy 81.365546 120.743656) + (xy 81.386197 120.706092) + (xy 81.391177 120.686691) + (xy 81.397478 120.668288) + (xy 81.405438 120.649896) + (xy 81.412272 120.606741) + (xy 81.414635 120.595331) + (xy 81.4255 120.553019) + (xy 81.4255 120.532983) + (xy 81.427027 120.513582) + (xy 81.43016 120.493804) + (xy 81.42605 120.450324) + (xy 81.4255 120.438655) + (xy 81.4255 117.812132) + (xy 81.445185 117.745093) + (xy 81.497989 117.699338) + (xy 81.567147 117.689394) + (xy 81.628541 117.716589) + (xy 81.644058 117.729426) + (xy 81.652698 117.737288) + (xy 84.441197 120.525788) + (xy 84.451022 120.538051) + (xy 84.451243 120.537869) + (xy 84.456211 120.543874) + (xy 84.456213 120.543876) + (xy 84.456214 120.543877) + (xy 84.465946 120.553016) + (xy 84.505222 120.589899) + (xy 84.508021 120.592612) + (xy 84.527522 120.612114) + (xy 84.527526 120.612117) + (xy 84.527529 120.61212) + (xy 84.530702 120.614581) + (xy 84.539574 120.622159) + (xy 84.571418 120.652062) + (xy 84.588976 120.661714) + (xy 84.605235 120.672395) + (xy 84.621064 120.684673) + (xy 84.661155 120.702021) + (xy 84.671626 120.707151) + (xy 84.690123 120.71732) + (xy 84.709902 120.728194) + (xy 84.709904 120.728195) + (xy 84.709908 120.728197) + (xy 84.729316 120.73318) + (xy 84.747719 120.739481) + (xy 84.766101 120.747436) + (xy 84.766102 120.747436) + (xy 84.766104 120.747437) + (xy 84.80925 120.75427) + (xy 84.820672 120.756636) + (xy 84.862981 120.7675) + (xy 84.883016 120.7675) + (xy 84.902414 120.769026) + (xy 84.922194 120.772159) + (xy 84.922195 120.77216) + (xy 84.922195 120.772159) + (xy 84.922196 120.77216) + (xy 84.965675 120.76805) + (xy 84.977344 120.7675) + (xy 85.261236 120.7675) + (xy 85.328275 120.787185) + (xy 85.37403 120.839989) + (xy 85.377418 120.848167) + (xy 85.428202 120.984328) + (xy 85.428206 120.984335) + (xy 85.514452 121.099544) + (xy 85.514455 121.099547) + (xy 85.629664 121.185793) + (xy 85.629671 121.185797) + (xy 85.764517 121.236091) + (xy 85.764516 121.236091) + (xy 85.771444 121.236835) + (xy 85.824127 121.2425) + (xy 88.419872 121.242499) + (xy 88.479483 121.236091) + (xy 88.550539 121.209589) + (xy 88.614329 121.185797) + (xy 88.614329 121.185796) + (xy 88.614331 121.185796) + (xy 88.628322 121.175321) + (xy 88.693786 121.150903) + (xy 88.762059 121.165753) + (xy 88.790316 121.186906) + (xy 88.858181 121.254771) + (xy 88.891666 121.316094) + (xy 88.8945 121.342452) + (xy 88.8945 121.932001) + (xy 88.894501 121.932019) + (xy 88.905 122.034796) + (xy 88.905001 122.034799) + (xy 88.960185 122.201331) + (xy 88.960187 122.201336) + (xy 89.052289 122.350657) + (xy 89.176346 122.474714) + (xy 89.179182 122.476463) + (xy 89.180717 122.47817) + (xy 89.182011 122.479193) + (xy 89.181836 122.479414) + (xy 89.225905 122.528411) + (xy 89.237126 122.597374) + (xy 89.209282 122.661456) + (xy 89.179182 122.687537) + (xy 89.176346 122.689285) + (xy 89.052289 122.813342) + (xy 88.960187 122.962663) + (xy 88.960185 122.962668) + (xy 88.938872 123.026988) + (xy 88.905001 123.129203) + (xy 88.905001 123.129204) + (xy 88.905 123.129204) + (xy 88.8945 123.231983) + (xy 88.8945 123.832001) + (xy 88.894501 123.832019) + (xy 88.905 123.934796) + (xy 88.905001 123.934799) + (xy 88.950357 124.071672) + (xy 88.960186 124.101334) + (xy 89.052288 124.250656) + (xy 89.176344 124.374712) + (xy 89.325666 124.466814) + (xy 89.325667 124.466814) + (xy 89.331813 124.470605) + (xy 89.330808 124.472233) + (xy 89.375953 124.511977) + (xy 89.395109 124.57917) + (xy 89.374898 124.646052) + (xy 89.33621 124.683732) + (xy 89.185347 124.776785) + (xy 89.185343 124.776788) + (xy 89.061289 124.900842) + (xy 88.969187 125.050163) + (xy 88.969186 125.050166) + (xy 88.914001 125.216703) + (xy 88.914001 125.216704) + (xy 88.914 125.216704) + (xy 88.9035 125.319483) + (xy 88.9035 125.944501) + (xy 88.903501 125.944519) + (xy 88.914 126.047296) + (xy 88.914001 126.047299) + (xy 88.968939 126.21309) + (xy 88.971341 126.282919) + (xy 88.959018 126.303624) + (xy 88.995482 126.306232) + (xy 89.051415 126.348104) + (xy 89.057681 126.357309) + (xy 89.061287 126.363154) + (xy 89.061289 126.363157) + (xy 89.155304 126.457172) + (xy 89.188789 126.518495) + (xy 89.183805 126.588187) + (xy 89.155304 126.632534) + (xy 89.08418 126.703658) + (xy 89.022857 126.737143) + (xy 88.953165 126.732159) + (xy 88.897232 126.690287) + (xy 88.872815 126.624823) + (xy 88.872499 126.615977) + (xy 88.872499 126.606129) + (xy 88.872498 126.606123) + (xy 88.872497 126.606116) + (xy 88.866091 126.546517) + (xy 88.865419 126.544716) + (xy 88.835966 126.465747) + (xy 88.830982 126.396055) + (xy 88.844632 126.371055) + (xy 88.803629 126.366592) + (xy 88.751967 126.326405) + (xy 88.729546 126.296454) + (xy 88.729545 126.296453) + (xy 88.729544 126.296452) + (xy 88.614335 126.210206) + (xy 88.614328 126.210202) + (xy 88.479482 126.159908) + (xy 88.479483 126.159908) + (xy 88.419883 126.153501) + (xy 88.419881 126.1535) + (xy 88.419873 126.1535) + (xy 88.419865 126.1535) + (xy 87.8715 126.1535) + (xy 87.804461 126.133815) + (xy 87.758706 126.081011) + (xy 87.7475 126.0295) + (xy 87.7475 123.638452) + (xy 87.767185 123.571413) + (xy 87.783819 123.550771) + (xy 87.894325 123.440265) + (xy 88.00838 123.326209) + (xy 88.069701 123.292726) + (xy 88.082158 123.290674) + (xy 88.129255 123.285368) + (xy 88.299522 123.225789) + (xy 88.452262 123.129816) + (xy 88.579816 123.002262) + (xy 88.675789 122.849522) + (xy 88.735368 122.679255) + (xy 88.735369 122.679249) + (xy 88.755565 122.500003) + (xy 88.755565 122.499996) + (xy 88.735369 122.32075) + (xy 88.735368 122.320745) + (xy 88.707287 122.240495) + (xy 88.675789 122.150478) + (xy 88.579816 121.997738) + (xy 88.452262 121.870184) + (xy 88.416608 121.847781) + (xy 88.299523 121.774211) + (xy 88.129254 121.714631) + (xy 88.129249 121.71463) + (xy 87.950004 121.694435) + (xy 87.949996 121.694435) + (xy 87.77075 121.71463) + (xy 87.770745 121.714631) + (xy 87.600476 121.774211) + (xy 87.447737 121.870184) + (xy 87.320184 121.997737) + (xy 87.22421 122.150478) + (xy 87.16463 122.32075) + (xy 87.159326 122.367825) + (xy 87.132258 122.432238) + (xy 87.123787 122.44162) + (xy 86.738208 122.827199) + (xy 86.725951 122.83702) + (xy 86.726134 122.837241) + (xy 86.720122 122.842214) + (xy 86.674098 122.891223) + (xy 86.671391 122.894016) + (xy 86.651889 122.913517) + (xy 86.651875 122.913534) + (xy 86.649407 122.916715) + (xy 86.641843 122.92557) + (xy 86.611937 122.957418) + (xy 86.611936 122.95742) + (xy 86.602284 122.974976) + (xy 86.59161 122.991226) + (xy 86.579329 123.007061) + (xy 86.579324 123.007068) + (xy 86.561975 123.047158) + (xy 86.556838 123.057644) + (xy 86.535803 123.095906) + (xy 86.530822 123.115307) + (xy 86.524521 123.13371) + (xy 86.516562 123.152102) + (xy 86.516561 123.152105) + (xy 86.509728 123.195243) + (xy 86.50736 123.206674) + (xy 86.496501 123.248971) + (xy 86.4965 123.248982) + (xy 86.4965 123.269016) + (xy 86.494973 123.288415) + (xy 86.49184 123.308194) + (xy 86.49184 123.308195) + (xy 86.49595 123.351674) + (xy 86.4965 123.363343) + (xy 86.4965 126.0295) + (xy 86.476815 126.096539) + (xy 86.424011 126.142294) + (xy 86.3725 126.1535) + (xy 85.824129 126.1535) + (xy 85.824123 126.153501) + (xy 85.764516 126.159908) + (xy 85.629671 126.210202) + (xy 85.629664 126.210206) + (xy 85.514455 126.296452) + (xy 85.514452 126.296455) + (xy 85.428206 126.411664) + (xy 85.428202 126.411671) + (xy 85.377908 126.546517) + (xy 85.373268 126.589679) + (xy 85.371501 126.606123) + (xy 85.3715 126.606135) + (xy 85.3715 127.90187) + (xy 85.371501 127.901876) + (xy 85.377908 127.961483) + (xy 85.428202 128.096328) + (xy 85.428206 128.096335) + (xy 85.514452 128.211544) + (xy 85.514455 128.211547) + (xy 85.629664 128.297793) + (xy 85.629671 128.297797) + (xy 85.764517 128.348091) + (xy 85.764516 128.348091) + (xy 85.771444 128.348835) + (xy 85.824127 128.3545) + (xy 88.419872 128.354499) + (xy 88.479483 128.348091) + (xy 88.614331 128.297796) + (xy 88.729546 128.211546) + (xy 88.810488 128.10342) + (xy 88.866422 128.06155) + (xy 88.936114 128.056566) + (xy 88.997437 128.090051) + (xy 89.015294 128.112635) + (xy 89.061684 128.187845) + (xy 89.185654 128.311815) + (xy 89.334875 128.403856) + (xy 89.33488 128.403858) + (xy 89.501302 128.459005) + (xy 89.501309 128.459006) + (xy 89.604019 128.469499) + (xy 89.853999 128.469499) + (xy 90.354 128.469499) + (xy 90.603972 128.469499) + (xy 90.603986 128.469498) + (xy 90.706697 128.459005) + (xy 90.873119 128.403858) + (xy 90.873124 128.403856) + (xy 91.022345 128.311815) + (xy 91.146315 128.187845) + (xy 91.238357 128.038621) + (xy 91.239929 128.035251) + (xy 91.241625 128.033323) + (xy 91.242149 128.032475) + (xy 91.242293 128.032564) + (xy 91.286095 127.982806) + (xy 91.353286 127.963646) + (xy 91.42017 127.983854) + (xy 91.457856 128.022545) + (xy 91.536684 128.150345) + (xy 91.660654 128.274315) + (xy 91.809875 128.366356) + (xy 91.80988 128.366358) + (xy 91.976302 128.421505) + (xy 91.976309 128.421506) + (xy 92.079019 128.431999) + (xy 92.353999 128.431999) + (xy 92.354 128.431998) + (xy 92.354 127.682) + (xy 91.369591 127.682) + (xy 91.328997 127.704166) + (xy 91.302639 127.707) + (xy 90.354 127.707) + (xy 90.354 128.469499) + (xy 89.853999 128.469499) + (xy 89.854 128.469498) + (xy 89.854 127.331) + (xy 89.873685 127.263961) + (xy 89.926489 127.218206) + (xy 89.978 127.207) + (xy 91.313409 127.207) + (xy 91.354003 127.184834) + (xy 91.380361 127.182) + (xy 92.73 127.182) + (xy 92.797039 127.201685) + (xy 92.842794 127.254489) + (xy 92.854 127.306) + (xy 92.854 128.431999) + (xy 93.128972 128.431999) + (xy 93.128986 128.431998) + (xy 93.231697 128.421505) + (xy 93.398119 128.366358) + (xy 93.398124 128.366356) + (xy 93.547345 128.274315) + (xy 93.671315 128.150345) + (xy 93.763356 128.001124) + (xy 93.763359 128.001117) + (xy 93.79769 127.897513) + (xy 93.837462 127.840067) + (xy 93.901978 127.813244) + (xy 93.970754 127.825559) + (xy 94.021954 127.873101) + (xy 94.033101 127.89751) + (xy 94.061713 127.983854) + (xy 94.065186 127.994333) + (xy 94.065187 127.994336) + (xy 94.088711 128.032475) + (xy 94.157288 128.143656) + (xy 94.281344 128.267712) + (xy 94.430666 128.359814) + (xy 94.597203 128.414999) + (xy 94.699991 128.4255) + (xy 95.700008 128.425499) + (xy 95.700016 128.425498) + (xy 95.700019 128.425498) + (xy 95.756302 128.419748) + (xy 95.802797 128.414999) + (xy 95.969334 128.359814) + (xy 96.118656 128.267712) + (xy 96.242712 128.143656) + (xy 96.334814 127.994334) + (xy 96.389999 127.827797) + (xy 96.4005 127.725009) + (xy 96.400499 127.099992) + (xy 96.389999 126.997203) + (xy 96.334814 126.830666) + (xy 96.242712 126.681344) + (xy 96.149049 126.587681) + (xy 96.115564 126.526358) + (xy 96.120548 126.456666) + (xy 96.149049 126.412319) + (xy 96.194776 126.366592) + (xy 96.242712 126.318656) + (xy 96.334814 126.169334) + (xy 96.367067 126.072) + (xy 97.683474 126.072) + (xy 97.703547 126.327064) + (xy 97.703547 126.327067) + (xy 97.703548 126.32707) + (xy 97.752868 126.532499) + (xy 97.763279 126.575864) + (xy 97.861188 126.812239) + (xy 97.86119 126.812242) + (xy 97.994875 127.030396) + (xy 97.994878 127.030401) + (xy 98.010379 127.04855) + (xy 98.161044 127.224956) + (xy 98.255935 127.306) + (xy 98.355598 127.391121) + (xy 98.3556 127.391122) + (xy 98.355601 127.391123) + (xy 98.457432 127.453525) + (xy 98.573757 127.524809) + (xy 98.57376 127.524811) + (xy 98.810135 127.62272) + (xy 98.81014 127.622722) + (xy 99.05893 127.682452) + (xy 99.250137 127.6975) + (xy 99.250145 127.6975) + (xy 99.377855 127.6975) + (xy 99.377863 127.6975) + (xy 99.56907 127.682452) + (xy 99.81786 127.622722) + (xy 99.936051 127.573765) + (xy 100.054239 127.524811) + (xy 100.05424 127.52481) + (xy 100.054243 127.524809) + (xy 100.272399 127.391123) + (xy 100.466956 127.224956) + (xy 100.633123 127.030399) + (xy 100.766809 126.812243) + (xy 100.773283 126.796615) + (xy 100.848105 126.615977) + (xy 100.864722 126.57586) + (xy 100.924452 126.32707) + (xy 100.944526 126.072) + (xy 100.924452 125.81693) + (xy 100.864722 125.56814) + (xy 100.842673 125.514909) + (xy 100.766811 125.33176) + (xy 100.766809 125.331757) + (xy 100.705673 125.231992) + (xy 100.633123 125.113601) + (xy 100.633122 125.1136) + (xy 100.633121 125.113598) + (xy 100.573319 125.043579) + (xy 100.466956 124.919044) + (xy 100.34358 124.813671) + (xy 100.272401 124.752878) + (xy 100.272396 124.752875) + (xy 100.054242 124.61919) + (xy 100.054239 124.619188) + (xy 99.817864 124.521279) + (xy 99.779119 124.511977) + (xy 99.56907 124.461548) + (xy 99.569068 124.461547) + (xy 99.569065 124.461547) + (xy 99.377868 124.4465) + (xy 99.377863 124.4465) + (xy 99.250137 124.4465) + (xy 99.250131 124.4465) + (xy 99.058934 124.461547) + (xy 98.810135 124.521279) + (xy 98.57376 124.619188) + (xy 98.573757 124.61919) + (xy 98.355603 124.752875) + (xy 98.355598 124.752878) + (xy 98.161044 124.919044) + (xy 97.994878 125.113598) + (xy 97.994875 125.113603) + (xy 97.86119 125.331757) + (xy 97.861188 125.33176) + (xy 97.763279 125.568135) + (xy 97.703547 125.816935) + (xy 97.683474 126.072) + (xy 96.367067 126.072) + (xy 96.389999 126.002797) + (xy 96.4005 125.900009) + (xy 96.400499 125.274992) + (xy 96.389999 125.172203) + (xy 96.36288 125.090367) + (xy 96.360479 125.02054) + (xy 96.392906 124.963683) + (xy 96.579801 124.776789) + (xy 97.250772 124.105819) + (xy 97.312095 124.072334) + (xy 97.338453 124.0695) + (xy 98.723257 124.0695) + (xy 98.738877 124.071224) + (xy 98.738904 124.070939) + (xy 98.74666 124.071671) + (xy 98.746667 124.071673) + (xy 98.813873 124.069561) + (xy 98.817768 124.0695) + (xy 98.845346 124.0695) + (xy 98.84535 124.0695) + (xy 98.849324 124.068997) + (xy 98.860963 124.06808) + (xy 98.904627 124.066709) + (xy 98.923869 124.061117) + (xy 98.942912 124.057174) + (xy 98.962792 124.054664) + (xy 99.003401 124.038585) + (xy 99.014444 124.034803) + (xy 99.05639 124.022618) + (xy 99.073629 124.012422) + (xy 99.091103 124.003862) + (xy 99.109727 123.996488) + (xy 99.109727 123.996487) + (xy 99.109732 123.996486) + (xy 99.145083 123.9708) + (xy 99.154814 123.964408) + (xy 99.19242 123.94217) + (xy 99.206589 123.927999) + (xy 99.221379 123.915368) + (xy 99.237587 123.903594) + (xy 99.265438 123.869926) + (xy 99.273279 123.861309) + (xy 99.733787 123.400802) + (xy 99.746042 123.390986) + (xy 99.745859 123.390764) + (xy 99.751868 123.385791) + (xy 99.751877 123.385786) + (xy 99.797949 123.336722) + (xy 99.800566 123.334023) + (xy 99.82012 123.314471) + (xy 99.822576 123.311303) + (xy 99.830156 123.302427) + (xy 99.860062 123.270582) + (xy 99.869713 123.253024) + (xy 99.880396 123.236761) + (xy 99.892673 123.220936) + (xy 99.910021 123.180844) + (xy 99.915151 123.170371) + (xy 99.936197 123.132092) + (xy 99.94118 123.11268) + (xy 99.947481 123.09428) + (xy 99.955437 123.075896) + (xy 99.96227 123.032748) + (xy 99.964633 123.021338) + (xy 99.9755 122.979019) + (xy 99.9755 122.958983) + (xy 99.977027 122.939582) + (xy 99.98016 122.919804) + (xy 99.97605 122.876324) + (xy 99.9755 122.864655) + (xy 99.9755 122.598694) + (xy 99.995185 122.531655) + (xy 100.047989 122.4859) + (xy 100.117147 122.475956) + (xy 100.131593 122.478919) + (xy 100.348592 122.537063) + (xy 100.536918 122.553539) + (xy 100.583999 122.557659) + (xy 100.584 122.557659) + (xy 100.584001 122.557659) + (xy 100.623234 122.554226) + (xy 100.819408 122.537063) + (xy 101.047663 122.475903) + (xy 101.26183 122.376035) + (xy 101.455401 122.240495) + (xy 101.622495 122.073401) + (xy 101.758035 121.87983) + (xy 101.857903 121.665663) + (xy 101.919063 121.437408) + (xy 101.939659 121.202) + (xy 101.919063 120.966592) + (xy 101.866966 120.77216) + (xy 101.857905 120.738344) + (xy 101.857904 120.738343) + (xy 101.857903 120.738337) + (xy 101.758035 120.524171) + (xy 101.757374 120.523226) + (xy 101.622494 120.330597) + (xy 101.455402 120.163506) + (xy 101.455396 120.163501) + (xy 101.269842 120.033575) + (xy 101.226217 119.978998) + (xy 101.219023 119.9095) + (xy 101.250546 119.847145) + (xy 101.269842 119.830425) + (xy 101.421962 119.723909) + (xy 101.455401 119.700495) + (xy 101.622495 119.533401) + (xy 101.758035 119.33983) + (xy 101.857903 119.125663) + (xy 101.919063 118.897408) + (xy 101.939659 118.662) + (xy 101.919063 118.426592) + (xy 101.862528 118.215599) + (xy 101.857905 118.198344) + (xy 101.857904 118.198343) + (xy 101.857903 118.198337) + (xy 101.758035 117.984171) + (xy 101.734207 117.95014) + (xy 101.622494 117.790597) + (xy 101.455402 117.623506) + (xy 101.455396 117.623501) + (xy 101.269842 117.493575) + (xy 101.226217 117.438998) + (xy 101.219023 117.3695) + (xy 101.250546 117.307145) + (xy 101.269842 117.290425) + (xy 101.397632 117.200945) + (xy 101.455401 117.160495) + (xy 101.622495 116.993401) + (xy 101.758035 116.79983) + (xy 101.857903 116.585663) + (xy 101.919063 116.357408) + (xy 101.939659 116.122) + (xy 101.919063 115.886592) + (xy 101.857903 115.658337) + (xy 101.758035 115.444171) + (xy 101.744962 115.4255) + (xy 101.622494 115.250597) + (xy 101.455402 115.083506) + (xy 101.455401 115.083505) + (xy 101.269405 114.953269) + (xy 101.225781 114.898692) + (xy 101.218588 114.829193) + (xy 101.25011 114.766839) + (xy 101.269405 114.750119) + (xy 101.455082 114.620105) + (xy 101.622105 114.453082) + (xy 101.7576 114.259578) + (xy 101.857429 114.045492) + (xy 101.857432 114.045486) + (xy 101.914636 113.832) + (xy 101.017686 113.832) + (xy 101.043493 113.791844) + (xy 101.084 113.653889) + (xy 101.084 113.510111) + (xy 101.043493 113.372156) + (xy 101.017686 113.332) + (xy 101.914636 113.332) + (xy 101.914635 113.331999) + (xy 101.857432 113.118513) + (xy 101.857429 113.118507) + (xy 101.7576 112.904422) + (xy 101.757599 112.90442) + (xy 101.622113 112.710926) + (xy 101.622108 112.71092) + (xy 101.455078 112.54389) + (xy 101.269405 112.413879) + (xy 101.22578 112.359302) + (xy 101.218588 112.289804) + (xy 101.25011 112.227449) + (xy 101.269406 112.21073) + (xy 101.311929 112.180955) + (xy 101.455401 112.080495) + (xy 101.622495 111.913401) + (xy 101.758035 111.71983) + (xy 101.857903 111.505663) + (xy 101.919063 111.277408) + (xy 101.939659 111.042) + (xy 101.919063 110.806592) + (xy 101.857903 110.578337) + (xy 101.758035 110.364171) + (xy 101.752425 110.356158) + (xy 101.622494 110.170597) + (xy 101.455402 110.003506) + (xy 101.455401 110.003505) + (xy 101.269405 109.873269) + (xy 101.225781 109.818692) + (xy 101.218588 109.749193) + (xy 101.25011 109.686839) + (xy 101.269405 109.670119) + (xy 101.455082 109.540105) + (xy 101.622105 109.373082) + (xy 101.7576 109.179578) + (xy 101.857429 108.965492) + (xy 101.857432 108.965486) + (xy 101.914636 108.752) + (xy 101.017686 108.752) + (xy 101.043493 108.711844) + (xy 101.084 108.573889) + (xy 101.084 108.430111) + (xy 101.043493 108.292156) + (xy 101.017686 108.252) + (xy 101.914636 108.252) + (xy 101.914635 108.251999) + (xy 101.857432 108.038513) + (xy 101.857429 108.038507) + (xy 101.7576 107.824422) + (xy 101.757599 107.82442) + (xy 101.622113 107.630926) + (xy 101.622108 107.63092) + (xy 101.455078 107.46389) + (xy 101.269405 107.333879) + (xy 101.22578 107.279302) + (xy 101.218588 107.209804) + (xy 101.25011 107.147449) + (xy 101.269406 107.13073) + (xy 101.327143 107.090302) + (xy 101.455401 107.000495) + (xy 101.622495 106.833401) + (xy 101.758035 106.63983) + (xy 101.857903 106.425663) + (xy 101.919063 106.197408) + (xy 101.939659 105.962) + (xy 101.919063 105.726592) + (xy 101.857903 105.498337) + (xy 101.758035 105.284171) + (xy 101.706269 105.21024) + (xy 101.622494 105.090597) + (xy 101.455402 104.923506) + (xy 101.455396 104.923501) + (xy 101.269842 104.793575) + (xy 101.226217 104.738998) + (xy 101.219023 104.6695) + (xy 101.250546 104.607145) + (xy 101.269842 104.590425) + (xy 101.357357 104.529146) + (xy 101.455401 104.460495) + (xy 101.622495 104.293401) + (xy 101.744811 104.118714) + (xy 101.765517 104.102164) + (xy 101.765579 104.086799) + (xy 101.772026 104.069825) + (xy 101.857903 103.885663) + (xy 101.919063 103.657408) + (xy 101.939659 103.422) + (xy 101.919063 103.186592) + (xy 101.857903 102.958337) + (xy 101.758035 102.744171) + (xy 101.752731 102.736595) + (xy 101.622494 102.550597) + (xy 101.455402 102.383506) + (xy 101.455396 102.383501) + (xy 101.269842 102.253575) + (xy 101.226217 102.198998) + (xy 101.219023 102.1295) + (xy 101.250546 102.067145) + (xy 101.269842 102.050425) + (xy 101.321199 102.014464) + (xy 101.455401 101.920495) + (xy 101.622495 101.753401) + (xy 101.758035 101.55983) + (xy 101.857903 101.345663) + (xy 101.919063 101.117408) + (xy 101.939659 100.882) + (xy 101.919063 100.646592) + (xy 101.857903 100.418337) + (xy 101.758035 100.204171) + (xy 101.752425 100.196158) + (xy 101.622494 100.010597) + (xy 101.455402 99.843506) + (xy 101.455396 99.843501) + (xy 101.269842 99.713575) + (xy 101.226217 99.658998) + (xy 101.219023 99.5895) + (xy 101.250546 99.527145) + (xy 101.269842 99.510425) + (xy 101.373989 99.4375) + (xy 101.455401 99.380495) + (xy 101.622495 99.213401) + (xy 101.758035 99.01983) + (xy 101.857903 98.805663) + (xy 101.919063 98.577408) + (xy 101.939659 98.342) + (xy 101.919063 98.106592) + (xy 101.857903 97.878337) + (xy 101.758035 97.664171) + (xy 101.733684 97.629393) + (xy 101.622494 97.470597) + (xy 101.455402 97.303506) + (xy 101.455401 97.303505) + (xy 101.269405 97.173269) + (xy 101.225781 97.118692) + (xy 101.218588 97.049193) + (xy 101.25011 96.986839) + (xy 101.269405 96.970119) + (xy 101.455082 96.840105) + (xy 101.622105 96.673082) + (xy 101.7576 96.479578) + (xy 101.857429 96.265492) + (xy 101.857432 96.265486) + (xy 101.914636 96.052) + (xy 101.017686 96.052) + (xy 101.043493 96.011844) + (xy 101.084 95.873889) + (xy 101.084 95.730111) + (xy 101.043493 95.592156) + (xy 101.017686 95.552) + (xy 101.914636 95.552) + (xy 101.914635 95.551999) + (xy 101.857432 95.338513) + (xy 101.857429 95.338507) + (xy 101.7576 95.124422) + (xy 101.757599 95.12442) + (xy 101.622113 94.930926) + (xy 101.622108 94.93092) + (xy 101.455078 94.76389) + (xy 101.269405 94.633879) + (xy 101.22578 94.579302) + (xy 101.218588 94.509804) + (xy 101.25011 94.447449) + (xy 101.269406 94.43073) + (xy 101.269842 94.430425) + (xy 101.455401 94.300495) + (xy 101.622495 94.133401) + (xy 101.758035 93.93983) + (xy 101.857903 93.725663) + (xy 101.919063 93.497408) + (xy 101.939659 93.262) + (xy 101.919063 93.026592) + (xy 101.857903 92.798337) + (xy 101.758035 92.584171) + (xy 101.752532 92.576311) + (xy 101.622494 92.390597) + (xy 101.455402 92.223506) + (xy 101.455396 92.223501) + (xy 101.269842 92.093575) + (xy 101.226217 92.038998) + (xy 101.219023 91.9695) + (xy 101.250546 91.907145) + (xy 101.269842 91.890425) + (xy 101.306685 91.864627) + (xy 101.455401 91.760495) + (xy 101.622495 91.593401) + (xy 101.758035 91.39983) + (xy 101.857903 91.185663) + (xy 101.919063 90.957408) + (xy 101.939659 90.722) + (xy 101.919063 90.486592) + (xy 101.857903 90.258337) + (xy 101.758035 90.044171) + (xy 101.752425 90.036158) + (xy 101.622494 89.850597) + (xy 101.455402 89.683506) + (xy 101.455401 89.683505) + (xy 101.269405 89.553269) + (xy 101.225781 89.498692) + (xy 101.218588 89.429193) + (xy 101.25011 89.366839) + (xy 101.269405 89.350119) + (xy 101.455082 89.220105) + (xy 101.622105 89.053082) + (xy 101.7576 88.859578) + (xy 101.857429 88.645492) + (xy 101.857432 88.645486) + (xy 101.914636 88.432) + (xy 101.017686 88.432) + (xy 101.043493 88.391844) + (xy 101.084 88.253889) + (xy 101.084 88.110111) + (xy 101.043493 87.972156) + (xy 101.017686 87.932) + (xy 101.914636 87.932) + (xy 101.914635 87.931999) + (xy 101.857432 87.718513) + (xy 101.857429 87.718507) + (xy 101.7576 87.504422) + (xy 101.757599 87.50442) + (xy 101.622113 87.310926) + (xy 101.622108 87.31092) + (xy 101.455078 87.14389) + (xy 101.269405 87.013879) + (xy 101.22578 86.959302) + (xy 101.218588 86.889804) + (xy 101.25011 86.827449) + (xy 101.269406 86.81073) + (xy 101.269842 86.810425) + (xy 101.455401 86.680495) + (xy 101.622495 86.513401) + (xy 101.758035 86.31983) + (xy 101.857903 86.105663) + (xy 101.919063 85.877408) + (xy 101.939659 85.642) + (xy 101.919063 85.406592) + (xy 101.860316 85.187342) + (xy 101.857905 85.178344) + (xy 101.857904 85.178343) + (xy 101.857903 85.178337) + (xy 101.758035 84.964171) + (xy 101.752425 84.956158) + (xy 101.622494 84.770597) + (xy 101.455402 84.603506) + (xy 101.455396 84.603501) + (xy 101.269842 84.473575) + (xy 101.226217 84.418998) + (xy 101.219023 84.3495) + (xy 101.250546 84.287145) + (xy 101.269842 84.270425) + (xy 101.32978 84.228456) + (xy 101.455401 84.140495) + (xy 101.622495 83.973401) + (xy 101.758035 83.77983) + (xy 101.857903 83.565663) + (xy 101.919063 83.337408) + (xy 101.939659 83.102) + (xy 101.919063 82.866592) + (xy 101.857903 82.638337) + (xy 101.758035 82.424171) + (xy 101.743071 82.402799) + (xy 101.622494 82.230597) + (xy 101.455402 82.063506) + (xy 101.455396 82.063501) + (xy 101.269842 81.933575) + (xy 101.226217 81.878998) + (xy 101.219023 81.8095) + (xy 101.250546 81.747145) + (xy 101.269842 81.730425) + (xy 101.294797 81.712951) + (xy 101.455401 81.600495) + (xy 101.622495 81.433401) + (xy 101.758035 81.23983) + (xy 101.857903 81.025663) + (xy 101.919063 80.797408) + (xy 101.939659 80.562) + (xy 101.919063 80.326592) + (xy 101.857903 80.098337) + (xy 101.758035 79.884171) + (xy 101.683153 79.777227) + (xy 101.622494 79.690597) + (xy 101.455402 79.523506) + (xy 101.455401 79.523505) + (xy 101.269405 79.393269) + (xy 101.225781 79.338692) + (xy 101.218588 79.269193) + (xy 101.25011 79.206839) + (xy 101.269405 79.190119) + (xy 101.455082 79.060105) + (xy 101.622105 78.893082) + (xy 101.7576 78.699578) + (xy 101.857429 78.485492) + (xy 101.857432 78.485486) + (xy 101.914636 78.272) + (xy 101.017686 78.272) + (xy 101.043493 78.231844) + (xy 101.084 78.093889) + (xy 101.084 77.950111) + (xy 101.043493 77.812156) + (xy 101.017686 77.772) + (xy 101.914636 77.772) + (xy 101.914635 77.771999) + (xy 101.857432 77.558513) + (xy 101.857429 77.558507) + (xy 101.7576 77.344422) + (xy 101.757599 77.34442) + (xy 101.622113 77.150926) + (xy 101.622108 77.15092) + (xy 101.455078 76.98389) + (xy 101.269405 76.853879) + (xy 101.22578 76.799302) + (xy 101.218588 76.729804) + (xy 101.25011 76.667449) + (xy 101.269406 76.65073) + (xy 101.269842 76.650425) + (xy 101.455401 76.520495) + (xy 101.622495 76.353401) + (xy 101.758035 76.15983) + (xy 101.857903 75.945663) + (xy 101.919063 75.717408) + (xy 101.939659 75.482) + (xy 101.919063 75.246592) + (xy 101.857903 75.018337) + (xy 101.758035 74.804171) + (xy 101.752425 74.796158) + (xy 101.622494 74.610597) + (xy 101.455402 74.443506) + (xy 101.455396 74.443501) + (xy 101.269842 74.313575) + (xy 101.226217 74.258998) + (xy 101.219023 74.1895) + (xy 101.250546 74.127145) + (xy 101.269842 74.110425) + (xy 101.331372 74.067341) + (xy 101.455401 73.980495) + (xy 101.622495 73.813401) + (xy 101.758035 73.61983) + (xy 101.857903 73.405663) + (xy 101.919063 73.177408) + (xy 101.939659 72.942) + (xy 101.919063 72.706592) + (xy 101.857903 72.478337) + (xy 101.758035 72.264171) + (xy 101.716898 72.20542) + (xy 101.622494 72.070597) + (xy 101.455402 71.903506) + (xy 101.455395 71.903501) + (xy 101.261834 71.767967) + (xy 101.26183 71.767965) + (xy 101.261828 71.767964) + (xy 101.047663 71.668097) + (xy 101.047659 71.668096) + (xy 101.047655 71.668094) + (xy 100.819413 71.606938) + (xy 100.819403 71.606936) + (xy 100.584001 71.586341) + (xy 100.583999 71.586341) + (xy 100.348596 71.606936) + (xy 100.348586 71.606938) + (xy 100.120344 71.668094) + (xy 100.120335 71.668098) + (xy 99.906171 71.767964) + (xy 99.906169 71.767965) + (xy 99.7126 71.903503) + (xy 99.590673 72.02543) + (xy 99.52935 72.058914) + (xy 99.459658 72.05393) + (xy 99.403725 72.012058) + (xy 99.38681 71.981081) + (xy 99.337797 71.849671) + (xy 99.337793 71.849664) + (xy 99.251547 71.734455) + (xy 99.251544 71.734452) + (xy 99.136335 71.648206) + (xy 99.136328 71.648202) + (xy 99.001482 71.597908) + (xy 99.001483 71.597908) + (xy 98.941883 71.591501) + (xy 98.941881 71.5915) + (xy 98.941873 71.5915) + (xy 98.941864 71.5915) + (xy 97.146129 71.5915) + (xy 97.146123 71.591501) + (xy 97.086516 71.597908) + (xy 96.951671 71.648202) + (xy 96.951664 71.648206) + (xy 96.836455 71.734452) + (xy 96.836452 71.734455) + (xy 96.750206 71.849664) + (xy 96.750202 71.849671) + (xy 96.699908 71.984517) + (xy 96.693501 72.044116) + (xy 96.6935 72.044135) + (xy 96.6935 72.993769) + (xy 96.673815 73.060808) + (xy 96.657181 73.08145) + (xy 95.747642 73.990988) + (xy 95.686319 74.024473) + (xy 95.616627 74.019489) + (xy 95.560694 73.977617) + (xy 95.536277 73.912153) + (xy 95.551129 73.84388) + (xy 95.558387 73.832182) + (xy 95.560035 73.82983) + (xy 95.659903 73.615663) + (xy 95.721063 73.387408) + (xy 95.741659 73.152) + (xy 95.721063 72.916592) + (xy 95.674626 72.743285) + (xy 95.659905 72.688344) + (xy 95.659904 72.688343) + (xy 95.659903 72.688337) + (xy 95.560035 72.474171) + (xy 95.531508 72.433429) + (xy 95.424494 72.280597) + (xy 95.257402 72.113506) + (xy 95.257396 72.113501) + (xy 95.071842 71.983575) + (xy 95.028217 71.928998) + (xy 95.021023 71.8595) + (xy 95.052546 71.797145) + (xy 95.071842 71.780425) + (xy 95.137498 71.734452) + (xy 95.257401 71.650495) + (xy 95.424495 71.483401) + (xy 95.560035 71.28983) + (xy 95.659903 71.075663) + (xy 95.721063 70.847408) + (xy 95.741659 70.612) + (xy 95.740979 70.604233) + (xy 95.730424 70.483586) + (xy 95.721063 70.376592) + (xy 95.659903 70.148337) + (xy 95.560035 69.934171) + (xy 95.55793 69.931165) + (xy 95.424496 69.7406) + (xy 95.366348 69.682452) + (xy 95.302179 69.618283) + (xy 95.268696 69.556963) + (xy 95.27368 69.487271) + (xy 95.315551 69.431337) + (xy 95.346529 69.414422) + (xy 95.478086 69.365354) + (xy 95.478093 69.36535) + (xy 95.593187 69.27919) + (xy 95.59319 69.279187) + (xy 95.67935 69.164093) + (xy 95.679354 69.164086) + (xy 95.729596 69.029379) + (xy 95.729598 69.029372) + (xy 95.735999 68.969844) + (xy 95.736 68.969827) + (xy 95.736 68.322) + (xy 94.819686 68.322) + (xy 94.845493 68.281844) + (xy 94.886 68.143889) + (xy 94.886 68.072) + (xy 97.683474 68.072) + (xy 97.703547 68.327064) + (xy 97.703547 68.327067) + (xy 97.703548 68.32707) + (xy 97.758673 68.55668) + (xy 97.763279 68.575864) + (xy 97.861188 68.812239) + (xy 97.86119 68.812242) + (xy 97.994875 69.030396) + (xy 97.994878 69.030401) + (xy 98.014541 69.053423) + (xy 98.161044 69.224956) + (xy 98.246234 69.297715) + (xy 98.355598 69.391121) + (xy 98.3556 69.391122) + (xy 98.355601 69.391123) + (xy 98.515867 69.489334) + (xy 98.573757 69.524809) + (xy 98.57376 69.524811) + (xy 98.810135 69.62272) + (xy 98.81014 69.622722) + (xy 99.05893 69.682452) + (xy 99.250137 69.6975) + (xy 99.250145 69.6975) + (xy 99.377855 69.6975) + (xy 99.377863 69.6975) + (xy 99.56907 69.682452) + (xy 99.81786 69.622722) + (xy 99.961945 69.56304) + (xy 100.054239 69.524811) + (xy 100.05424 69.52481) + (xy 100.054243 69.524809) + (xy 100.272399 69.391123) + (xy 100.466956 69.224956) + (xy 100.633123 69.030399) + (xy 100.766809 68.812243) + (xy 100.864722 68.57586) + (xy 100.924452 68.32707) + (xy 100.944526 68.072) + (xy 100.924452 67.81693) + (xy 100.864722 67.56814) + (xy 100.846646 67.524501) + (xy 100.766811 67.33176) + (xy 100.766809 67.331757) + (xy 100.759064 67.319119) + (xy 100.633123 67.113601) + (xy 100.633122 67.1136) + (xy 100.633121 67.113598) + (xy 100.573319 67.043579) + (xy 100.466956 66.919044) + (xy 100.360591 66.8282) + (xy 100.272401 66.752878) + (xy 100.272396 66.752875) + (xy 100.054242 66.61919) + (xy 100.054239 66.619188) + (xy 99.817864 66.521279) + (xy 99.729232 66.5) + (xy 99.56907 66.461548) + (xy 99.569068 66.461547) + (xy 99.569065 66.461547) + (xy 99.377868 66.4465) + (xy 99.377863 66.4465) + (xy 99.250137 66.4465) + (xy 99.250131 66.4465) + (xy 99.058934 66.461547) + (xy 98.810135 66.521279) + (xy 98.57376 66.619188) + (xy 98.573757 66.61919) + (xy 98.355603 66.752875) + (xy 98.355598 66.752878) + (xy 98.161044 66.919044) + (xy 97.994878 67.113598) + (xy 97.994875 67.113603) + (xy 97.86119 67.331757) + (xy 97.861188 67.33176) + (xy 97.763279 67.568135) + (xy 97.762351 67.572) + (xy 97.706354 67.805245) + (xy 97.703547 67.816935) + (xy 97.683474 68.072) + (xy 94.886 68.072) + (xy 94.886 68.000111) + (xy 94.845493 67.862156) + (xy 94.819686 67.822) + (xy 95.736 67.822) + (xy 95.736 67.174172) + (xy 95.735999 67.174155) + (xy 95.729598 67.114627) + (xy 95.729596 67.11462) + (xy 95.679354 66.979913) + (xy 95.67935 66.979906) + (xy 95.59319 66.864812) + (xy 95.593187 66.864809) + (xy 95.478093 66.778649) + (xy 95.478086 66.778645) + (xy 95.343379 66.728403) + (xy 95.343372 66.728401) + (xy 95.283844 66.722) + (xy 94.636 66.722) + (xy 94.636 67.636498) + (xy 94.528315 67.58732) + (xy 94.421763 67.572) + (xy 94.350237 67.572) + (xy 94.243685 67.58732) + (xy 94.136 67.636498) + (xy 94.136 66.722) + (xy 93.488155 66.722) + (xy 93.428627 66.728401) + (xy 93.42862 66.728403) + (xy 93.293913 66.778645) + (xy 93.293906 66.778649) + (xy 93.178812 66.864809) + (xy 93.178809 66.864812) + (xy 93.092649 66.979906) + (xy 93.092645 66.979913) + (xy 93.042403 67.11462) + (xy 93.042401 67.114627) + (xy 93.036 67.174155) + (xy 93.036 67.822) + (xy 93.952314 67.822) + (xy 93.926507 67.862156) + (xy 93.886 68.000111) + (xy 93.886 68.143889) + (xy 93.926507 68.281844) + (xy 93.952314 68.322) + (xy 93.036 68.322) + (xy 93.036 68.969844) + (xy 93.042401 69.029372) + (xy 93.042403 69.029379) + (xy 93.092645 69.164086) + (xy 93.092649 69.164093) + (xy 93.178809 69.279187) + (xy 93.178812 69.27919) + (xy 93.293906 69.36535) + (xy 93.293913 69.365354) + (xy 93.42547 69.414421) + (xy 93.481403 69.456292) + (xy 93.505821 69.521756) + (xy 93.49097 69.590029) + (xy 93.469819 69.618284) + (xy 93.347503 69.7406) + (xy 93.211965 69.934169) + (xy 93.211964 69.934171) + (xy 93.199774 69.960314) + (xy 93.153601 70.012753) + (xy 93.086408 70.031905) + (xy 93.019527 70.011689) + (xy 92.979438 69.966762) + (xy 92.979205 69.966916) + (xy 92.978165 69.965335) + (xy 92.976583 69.963562) + (xy 92.975238 69.960885) + (xy 92.974862 69.960314) + (xy 92.934025 69.898222) + (xy 92.932088 69.895181) + (xy 92.892714 69.831347) + (xy 92.888234 69.825681) + (xy 92.88828 69.825643) + (xy 92.883519 69.819799) + (xy 92.883474 69.819838) + (xy 92.878831 69.814305) + (xy 92.82429 69.762848) + (xy 92.821703 69.760335) + (xy 92.156587 69.095219) + (xy 92.123102 69.033896) + (xy 92.12091 68.994935) + (xy 92.122446 68.979904) + (xy 92.1255 68.950009) + (xy 92.125499 68.349992) + (xy 92.123157 68.32707) + (xy 92.114999 68.247203) + (xy 92.114998 68.2472) + (xy 92.080764 68.143889) + (xy 92.059814 68.080666) + (xy 91.967712 67.931344) + (xy 91.843656 67.807288) + (xy 91.840342 67.805243) + (xy 91.838546 67.803248) + (xy 91.837989 67.802807) + (xy 91.838064 67.802711) + (xy 91.793618 67.753297) + (xy 91.782397 67.684334) + (xy 91.81024 67.620252) + (xy 91.840348 67.594165) + (xy 91.843342 67.592318) + (xy 91.967315 67.468345) + (xy 92.059356 67.319124) + (xy 92.059358 67.319119) + (xy 92.114505 67.152697) + (xy 92.114506 67.15269) + (xy 92.124999 67.049986) + (xy 92.125 67.049973) + (xy 92.125 67) + (xy 90.774 67) + (xy 90.706961 66.980315) + (xy 90.661206 66.927511) + (xy 90.65 66.876) + (xy 90.65 65.75) + (xy 91.15 65.75) + (xy 91.15 66.5) + (xy 92.124999 66.5) + (xy 92.124999 66.450028) + (xy 92.124998 66.450013) + (xy 92.114505 66.347302) + (xy 92.059358 66.18088) + (xy 92.059356 66.180875) + (xy 91.967315 66.031654) + (xy 91.843345 65.907684) + (xy 91.694124 65.815643) + (xy 91.694119 65.815641) + (xy 91.527697 65.760494) + (xy 91.52769 65.760493) + (xy 91.424986 65.75) + (xy 91.15 65.75) + (xy 90.65 65.75) + (xy 90.375029 65.75) + (xy 90.375012 65.750001) + (xy 90.272302 65.760494) + (xy 90.10588 65.815641) + (xy 90.105875 65.815643) + (xy 89.956654 65.907684) + (xy 89.832684 66.031654) + (xy 89.740643 66.180875) + (xy 89.740641 66.18088) + (xy 89.736427 66.193598) + (xy 89.696652 66.251042) + (xy 89.632135 66.277862) + (xy 89.56336 66.265545) + (xy 89.512161 66.218) + (xy 89.501016 66.193593) + (xy 89.496803 66.18088) + (xy 89.487003 66.151303) + (xy 89.486999 66.151297) + (xy 89.486998 66.151294) + (xy 89.39797 66.006959) + (xy 89.397967 66.006955) + (xy 89.278044 65.887032) + (xy 89.27804 65.887029) + (xy 89.133705 65.798001) + (xy 89.133699 65.797998) + (xy 89.133697 65.797997) + (xy 89.133694 65.797996) + (xy 88.972709 65.744651) + (xy 88.873346 65.7345) + (xy 88.326662 65.7345) + (xy 88.326644 65.734501) + (xy 88.227292 65.74465) + (xy 88.227289 65.744651) + (xy 88.066305 65.797996) + (xy 88.066294 65.798001) + (xy 87.921957 65.88703) + (xy 87.919464 65.889002) + (xy 87.917433 65.889821) + (xy 87.915809 65.890823) + (xy 87.915637 65.890545) + (xy 87.854667 65.915138) + (xy 87.786026 65.902094) + (xy 87.777462 65.89727) + (xy 87.645124 65.815643) + (xy 87.645119 65.815641) + (xy 87.478697 65.760494) + (xy 87.47869 65.760493) + (xy 87.375986 65.75) + (xy 87.326 65.75) + (xy 87.326 67.926) + (xy 87.306315 67.993039) + (xy 87.253511 68.038794) + (xy 87.202 68.05) + (xy 86.95 68.05) + (xy 86.882961 68.030315) + (xy 86.837206 67.977511) + (xy 86.826 67.926) + (xy 86.826 65.75) + (xy 86.825999 65.749999) + (xy 86.776029 65.75) + (xy 86.776011 65.750001) + (xy 86.673302 65.760494) + (xy 86.50688 65.815641) + (xy 86.506871 65.815645) + (xy 86.363526 65.904061) + (xy 86.296134 65.922501) + (xy 86.233333 65.90406) + (xy 86.085705 65.813001) + (xy 86.085699 65.812998) + (xy 86.085697 65.812997) + (xy 86.040427 65.797996) + (xy 85.924709 65.759651) + (xy 85.825346 65.7495) + (xy 85.278662 65.7495) + (xy 85.278644 65.749501) + (xy 85.179292 65.75965) + (xy 85.179289 65.759651) + (xy 85.018305 65.812996) + (xy 85.018294 65.813001) + (xy 84.873959 65.902029) + (xy 84.873955 65.902032) + (xy 84.754032 66.021955) + (xy 84.754029 66.021959) + (xy 84.665001 66.166294) + (xy 84.664996 66.166305) + (xy 84.611651 66.32729) + (xy 84.6015 66.426647) + (xy 84.6015 69.147547) + (xy 84.581815 69.214586) + (xy 84.529011 69.260341) + (xy 84.459853 69.270285) + (xy 84.396297 69.24126) + (xy 84.389819 69.235228) + (xy 84.195818 69.041227) + (xy 84.162333 68.979904) + (xy 84.159499 68.953554) + (xy 84.159499 68.376492) + (xy 84.15445 68.32707) + (xy 84.148999 68.273703) + (xy 84.148998 68.2737) + (xy 84.140217 68.2472) + (xy 84.093814 68.107166) + (xy 84.001712 67.957844) + (xy 83.908049 67.864181) + (xy 83.874564 67.802858) + (xy 83.879548 67.733166) + (xy 83.908049 67.688819) + (xy 83.950752 67.646116) + (xy 84.001712 67.595156) + (xy 84.093814 67.445834) + (xy 84.148999 67.279297) + (xy 84.1595 67.176509) + (xy 84.159499 66.551492) + (xy 84.157858 66.535432) + (xy 84.148999 66.448703) + (xy 84.148998 66.4487) + (xy 84.11086 66.333608) + (xy 84.093814 66.282166) + (xy 84.001712 66.132844) + (xy 83.877656 66.008788) + (xy 83.728334 65.916686) + (xy 83.561797 65.861501) + (xy 83.561795 65.8615) + (xy 83.45901 65.851) + (xy 82.458998 65.851) + (xy 82.45898 65.851001) + (xy 82.356203 65.8615) + (xy 82.3562 65.861501) + (xy 82.189668 65.916685) + (xy 82.189663 65.916687) + (xy 82.040345 66.008787) + (xy 81.957261 66.091871) + (xy 81.895937 66.125355) + (xy 81.826246 66.120371) + (xy 81.781899 66.09187) + (xy 81.721003 66.030974) + (xy 81.720999 66.030971) + (xy 81.572933 65.939642) + (xy 81.572927 65.939639) + (xy 81.572925 65.939638) + (xy 81.521209 65.922501) + (xy 81.407776 65.884913) + (xy 81.305855 65.8745) + (xy 81.305848 65.8745) + (xy 80.294152 65.8745) + (xy 80.294144 65.8745) + (xy 80.192223 65.884913) + (xy 80.027077 65.939637) + (xy 80.027066 65.939642) + (xy 79.879 66.030971) + (xy 79.878996 66.030974) + (xy 79.755974 66.153996) + (xy 79.755971 66.154) + (xy 79.664642 66.302066) + (xy 79.664637 66.302077) + (xy 79.609913 66.467223) + (xy 79.5995 66.569144) + (xy 79.5995 67.155855) + (xy 79.609913 67.257776) + (xy 79.664637 67.422922) + (xy 79.664642 67.422933) + (xy 79.755971 67.570999) + (xy 79.755974 67.571003) + (xy 79.878999 67.694028) + (xy 79.880183 67.694758) + (xy 79.880823 67.69547) + (xy 79.884664 67.698507) + (xy 79.884145 67.699163) + (xy 79.926906 67.746708) + (xy 79.938125 67.815671) + (xy 79.910279 67.879752) + (xy 79.884877 67.901762) + (xy 79.884977 67.901888) + (xy 79.882177 67.904101) + (xy 79.880184 67.905829) + (xy 79.879315 67.906364) + (xy 79.879309 67.906369) + (xy 79.75637 68.029308) + (xy 79.665096 68.177285) + (xy 79.665094 68.17729) + (xy 79.610407 68.342326) + (xy 79.6 68.444184) + (xy 79.6 68.4875) + (xy 80.926 68.4875) + (xy 80.993039 68.507185) + (xy 81.038794 68.559989) + (xy 81.05 68.6115) + (xy 81.05 68.8635) + (xy 81.030315 68.930539) + (xy 80.977511 68.976294) + (xy 80.926 68.9875) + (xy 79.6 68.9875) + (xy 79.6 69.030815) + (xy 79.610407 69.132673) + (xy 79.665096 69.297715) + (xy 79.665274 69.298096) + (xy 79.665317 69.298381) + (xy 79.667367 69.304567) + (xy 79.66631 69.304917) + (xy 79.675766 69.367173) + (xy 79.647246 69.430957) + (xy 79.588769 69.469196) + (xy 79.552892 69.4745) + (xy 79.334743 69.4745) + (xy 79.319122 69.472775) + (xy 79.319095 69.473061) + (xy 79.311333 69.472326) + (xy 79.244113 69.474439) + (xy 79.240219 69.4745) + (xy 79.21265 69.4745) + (xy 79.208673 69.475002) + (xy 79.197042 69.475917) + (xy 79.153374 69.477289) + (xy 79.153368 69.47729) + (xy 79.134126 69.48288) + (xy 79.115087 69.486823) + (xy 79.095217 69.489334) + (xy 79.095203 69.489337) + (xy 79.054598 69.505413) + (xy 79.043554 69.509194) + (xy 79.001614 69.521379) + (xy 79.00161 69.521381) + (xy 78.984366 69.531579) + (xy 78.966905 69.540133) + (xy 78.948274 69.54751) + (xy 78.948262 69.547517) + (xy 78.912933 69.573185) + (xy 78.903173 69.579596) + (xy 78.86558 69.601829) + (xy 78.851414 69.615995) + (xy 78.836624 69.628627) + (xy 78.820414 69.640404) + (xy 78.820411 69.640407) + (xy 78.792573 69.674058) + (xy 78.784711 69.682697) + (xy 76.959208 71.508199) + (xy 76.946951 71.51802) + (xy 76.947134 71.518241) + (xy 76.941122 71.523214) + (xy 76.895098 71.572223) + (xy 76.892391 71.575016) + (xy 76.872889 71.594517) + (xy 76.872875 71.594534) + (xy 76.870407 71.597715) + (xy 76.862843 71.60657) + (xy 76.832933 71.638423) + (xy 76.828888 71.64399) + (xy 76.773554 71.686651) + (xy 76.70394 71.692623) + (xy 76.676173 71.683477) + (xy 76.516669 71.609099) + (xy 76.516655 71.609094) + (xy 76.288413 71.547938) + (xy 76.288403 71.547936) + (xy 76.053001 71.527341) + (xy 76.052999 71.527341) + (xy 75.817596 71.547936) + (xy 75.817586 71.547938) + (xy 75.589344 71.609094) + (xy 75.589335 71.609098) + (xy 75.375171 71.708964) + (xy 75.375169 71.708965) + (xy 75.181597 71.844505) + (xy 75.014505 72.011597) + (xy 74.878965 72.205169) + (xy 74.878964 72.205171) + (xy 74.779098 72.419335) + (xy 74.779094 72.419344) + (xy 74.717938 72.647586) + (xy 74.717936 72.647596) + (xy 74.697341 72.882999) + (xy 74.697341 72.883) + (xy 74.717936 73.118403) + (xy 74.717938 73.118413) + (xy 74.779094 73.346655) + (xy 74.779096 73.346659) + (xy 74.779097 73.346663) + (xy 74.80661 73.405664) + (xy 74.878965 73.56083) + (xy 74.878967 73.560834) + (xy 75.014501 73.754395) + (xy 75.014506 73.754402) + (xy 75.181597 73.921493) + (xy 75.181603 73.921498) + (xy 75.367158 74.051425) + (xy 75.410783 74.106002) + (xy 75.417977 74.1755) + (xy 75.386454 74.237855) + (xy 75.367158 74.254575) + (xy 75.181597 74.384505) + (xy 75.014505 74.551597) + (xy 74.878965 74.745169) + (xy 74.878964 74.745171) + (xy 74.779098 74.959335) + (xy 74.779094 74.959344) + (xy 74.717938 75.187586) + (xy 74.717936 75.187596) + (xy 74.697341 75.422999) + (xy 74.697341 75.423) + (xy 74.717936 75.658403) + (xy 74.717938 75.658413) + (xy 74.779094 75.886655) + (xy 74.779096 75.886659) + (xy 74.779097 75.886663) + (xy 74.853146 76.045461) + (xy 74.878965 76.10083) + (xy 74.878967 76.100834) + (xy 74.919174 76.158255) + (xy 75.014501 76.294396) + (xy 75.014506 76.294402) + (xy 75.13643 76.416326) + (xy 75.169915 76.477649) + (xy 75.164931 76.547341) + (xy 75.123059 76.603274) + (xy 75.092083 76.620189) + (xy 74.960669 76.669203) + (xy 74.960664 76.669206) + (xy 74.845455 76.755452) + (xy 74.845452 76.755455) + (xy 74.759206 76.870664) + (xy 74.759202 76.870671) + (xy 74.708908 77.005517) + (xy 74.702501 77.065116) + (xy 74.7025 77.065135) + (xy 74.7025 78.86087) + (xy 74.702501 78.860876) + (xy 74.708908 78.920483) + (xy 74.759202 79.055328) + (xy 74.759206 79.055335) + (xy 74.845452 79.170544) + (xy 74.845455 79.170547) + (xy 74.960664 79.256793) + (xy 74.960669 79.256796) + (xy 74.993832 79.269165) + (xy 75.049766 79.311034) + (xy 75.074184 79.376498) + (xy 75.0745 79.385347) + (xy 75.0745 80.390483) + (xy 75.054815 80.457522) + (xy 75.002011 80.503277) + (xy 74.98951 80.508186) + (xy 74.957917 80.518656) + (xy 74.930666 80.527686) + (xy 74.930663 80.527687) + (xy 74.781342 80.619789) + (xy 74.657289 80.743842) + (xy 74.565187 80.893163) + (xy 74.565185 80.893168) + (xy 74.561872 80.903167) + (xy 74.510001 81.059703) + (xy 74.510001 81.059704) + (xy 74.51 81.059704) + (xy 74.4995 81.162483) + (xy 74.4995 81.787501) + (xy 74.499501 81.787519) + (xy 74.51 81.890296) + (xy 74.510001 81.890299) + (xy 74.565185 82.056831) + (xy 74.565187 82.056836) + (xy 74.590086 82.097203) + (xy 74.657287 82.206155) + (xy 74.657289 82.206157) + (xy 74.750951 82.299819) + (xy 74.784436 82.361142) + (xy 74.779452 82.430834) + (xy 74.750951 82.475181) + (xy 74.657289 82.568842) + (xy 74.565187 82.718163) + (xy 74.565185 82.718168) + (xy 74.537349 82.80217) + (xy 74.510001 82.884703) + (xy 74.510001 82.884704) + (xy 74.51 82.884704) + (xy 74.4995 82.987483) + (xy 74.4995 83.612501) + (xy 74.499501 83.612519) + (xy 74.51 83.715296) + (xy 74.510001 83.715299) + (xy 74.565185 83.881831) + (xy 74.565187 83.881836) + (xy 74.576699 83.9005) + (xy 74.657288 84.031156) + (xy 74.781344 84.155212) + (xy 74.930666 84.247314) + (xy 75.097203 84.302499) + (xy 75.199991 84.313) + (xy 76.200008 84.312999) + (xy 76.200016 84.312998) + (xy 76.200019 84.312998) + (xy 76.256302 84.307248) + (xy 76.302797 84.302499) + (xy 76.469334 84.247314) + (xy 76.618656 84.155212) + (xy 76.742712 84.031156) + (xy 76.771549 83.984402) + (xy 76.823497 83.937679) + (xy 76.877088 83.9255) + (xy 76.908058 83.9255) + (xy 76.975097 83.945185) + (xy 77.020852 83.997989) + (xy 77.02424 84.006168) + (xy 77.042201 84.054326) + (xy 77.042206 84.054335) + (xy 77.128452 84.169544) + (xy 77.128455 84.169547) + (xy 77.243664 84.255793) + (xy 77.243671 84.255797) + (xy 77.378517 84.306091) + (xy 77.378516 84.306091) + (xy 77.385444 84.306835) + (xy 77.438127 84.3125) + (xy 79.533872 84.312499) + (xy 79.593483 84.306091) + (xy 79.728331 84.255796) + (xy 79.843546 84.169546) + (xy 79.929796 84.054331) + (xy 79.980091 83.919483) + (xy 79.9865 83.859873) + (xy 79.986499 82.764128) + (xy 79.980091 82.704517) + (xy 79.977655 82.697987) + (xy 79.929797 82.569671) + (xy 79.929793 82.569664) + (xy 79.843547 82.454455) + (xy 79.843544 82.454453) + (xy 79.811994 82.430834) + (xy 79.785437 82.410953) + (xy 79.743567 82.355019) + (xy 79.738583 82.285327) + (xy 79.772069 82.224004) + (xy 79.785439 82.21242) + (xy 79.843189 82.169188) + (xy 79.84319 82.169187) + (xy 79.92935 82.054093) + (xy 79.929354 82.054086) + (xy 79.979596 81.919379) + (xy 79.979598 81.919372) + (xy 79.985999 81.859844) + (xy 79.986 81.859827) + (xy 79.986 81.562) + (xy 78.36 81.562) + (xy 78.292961 81.542315) + (xy 78.247206 81.489511) + (xy 78.236 81.438) + (xy 78.236 80.312) + (xy 78.736 80.312) + (xy 78.736 81.062) + (xy 79.986 81.062) + (xy 79.986 80.764172) + (xy 79.985999 80.764155) + (xy 79.979598 80.704627) + (xy 79.979596 80.70462) + (xy 79.929354 80.569913) + (xy 79.92935 80.569906) + (xy 79.84319 80.454812) + (xy 79.843187 80.454809) + (xy 79.728093 80.368649) + (xy 79.728086 80.368645) + (xy 79.593379 80.318403) + (xy 79.593372 80.318401) + (xy 79.533844 80.312) + (xy 78.736 80.312) + (xy 78.236 80.312) + (xy 77.438155 80.312) + (xy 77.378627 80.318401) + (xy 77.37862 80.318403) + (xy 77.243913 80.368645) + (xy 77.243906 80.368649) + (xy 77.128812 80.454809) + (xy 77.128809 80.454812) + (xy 77.042649 80.569906) + (xy 77.042645 80.569913) + (xy 76.992403 80.70462) + (xy 76.992401 80.704626) + (xy 76.99046 80.722682) + (xy 76.96372 80.787232) + (xy 76.906326 80.827079) + (xy 76.836501 80.82957) + (xy 76.776413 80.793916) + (xy 76.761632 80.774519) + (xy 76.758436 80.769338) + (xy 76.742712 80.743844) + (xy 76.618656 80.619788) + (xy 76.469334 80.527686) + (xy 76.410493 80.508188) + (xy 76.353051 80.468416) + (xy 76.326228 80.4039) + (xy 76.3255 80.390483) + (xy 76.3255 79.437499) + (xy 76.345185 79.37046) + (xy 76.397989 79.324705) + (xy 76.4495 79.313499) + (xy 76.950871 79.313499) + (xy 76.950872 79.313499) + (xy 77.010483 79.307091) + (xy 77.145331 79.256796) + (xy 77.260546 79.170546) + (xy 77.346796 79.055331) + (xy 77.39581 78.923916) + (xy 77.437681 78.867984) + (xy 77.503145 78.843566) + (xy 77.571418 78.858417) + (xy 77.599673 78.879569) + (xy 77.721599 79.001495) + (xy 77.80128 79.057288) + (xy 77.915165 79.137032) + (xy 77.915167 79.137033) + (xy 77.91517 79.137035) + (xy 78.129337 79.236903) + (xy 78.357592 79.298063) + (xy 78.545918 79.314539) + (xy 78.592999 79.318659) + (xy 78.593 79.318659) + (xy 78.593001 79.318659) + (xy 78.632234 79.315226) + (xy 78.828408 79.298063) + (xy 79.056663 79.236903) + (xy 79.27083 79.137035) + (xy 79.464401 79.001495) + (xy 79.631495 78.834401) + (xy 79.679127 78.766376) + (xy 79.733704 78.722751) + (xy 79.780701 78.7135) + (xy 80.40077 78.7135) + (xy 80.467809 78.733185) + (xy 80.488451 78.749819) + (xy 80.588451 78.849819) + (xy 80.621936 78.911142) + (xy 80.616952 78.980834) + (xy 80.588451 79.025181) + (xy 80.532289 79.081342) + (xy 80.440187 79.230663) + (xy 80.440185 79.230668) + (xy 80.421155 79.288097) + (xy 80.385001 79.397203) + (xy 80.385001 79.397204) + (xy 80.385 79.397204) + (xy 80.3745 79.499983) + (xy 80.3745 80.500001) + (xy 80.374501 80.500019) + (xy 80.385 80.602796) + (xy 80.385001 80.602799) + (xy 80.440185 80.769331) + (xy 80.440187 80.769336) + (xy 80.451502 80.787681) + (xy 80.522734 80.903167) + (xy 80.532289 80.918657) + (xy 80.600681 80.987049) + (xy 80.634166 81.048372) + (xy 80.637 81.07473) + (xy 80.637 81.62527) + (xy 80.617315 81.692309) + (xy 80.600681 81.712951) + (xy 80.532289 81.781342) + (xy 80.440187 81.930663) + (xy 80.440185 81.930668) + (xy 80.433937 81.949524) + (xy 80.385001 82.097203) + (xy 80.385001 82.097204) + (xy 80.385 82.097204) + (xy 80.3745 82.199983) + (xy 80.3745 83.200001) + (xy 80.374501 83.200019) + (xy 80.385 83.302796) + (xy 80.385001 83.302799) + (xy 80.430391 83.439776) + (xy 80.440186 83.469334) + (xy 80.532288 83.618656) + (xy 80.656344 83.742712) + (xy 80.805666 83.834814) + (xy 80.972203 83.889999) + (xy 81.074991 83.9005) + (xy 81.700008 83.900499) + (xy 81.700016 83.900498) + (xy 81.700019 83.900498) + (xy 81.797148 83.890576) + (xy 81.802797 83.889999) + (xy 81.969334 83.834814) + (xy 82.118656 83.742712) + (xy 82.212319 83.649049) + (xy 82.273642 83.615564) + (xy 82.343334 83.620548) + (xy 82.387681 83.649049) + (xy 82.481344 83.742712) + (xy 82.528096 83.771548) + (xy 82.57482 83.823494) + (xy 82.587 83.877087) + (xy 82.587 83.929755) + (xy 82.585275 83.945372) + (xy 82.585561 83.945399) + (xy 82.584826 83.953165) + (xy 82.586939 84.020372) + (xy 82.587 84.024267) + (xy 82.587 84.051857) + (xy 82.587503 84.055835) + (xy 82.588418 84.067467) + (xy 82.58979 84.111124) + (xy 82.589791 84.111127) + (xy 82.59538 84.130367) + (xy 82.599324 84.149411) + (xy 82.601836 84.169292) + (xy 82.606216 84.180355) + (xy 82.612591 84.249933) + (xy 82.580338 84.311913) + (xy 82.519696 84.346616) + (xy 82.490923 84.35) + (xy 82.0875 84.35) + (xy 82.0875 85.95) + (xy 82.491045 85.95) + (xy 82.558084 85.969685) + (xy 82.603839 86.022489) + (xy 82.613783 86.091647) + (xy 82.584758 86.155203) + (xy 82.578726 86.161681) + (xy 82.527226 86.213181) + (xy 82.465903 86.246666) + (xy 82.439545 86.2495) + (xy 81.3245 86.2495) + (xy 81.257461 86.229815) + (xy 81.211706 86.177011) + (xy 81.2005 86.1255) + (xy 81.2005 86.074) + (xy 81.220185 86.006961) + (xy 81.272989 85.961206) + (xy 81.3245 85.95) + (xy 81.5875 85.95) + (xy 81.5875 85.4) + (xy 80.931815 85.4) + (xy 80.868694 85.382732) + (xy 80.810396 85.348255) + (xy 80.810393 85.348254) + (xy 80.652573 85.302402) + (xy 80.652567 85.302401) + (xy 80.615701 85.2995) + (xy 80.615694 85.2995) + (xy 79.309306 85.2995) + (xy 79.309298 85.2995) + (xy 79.272432 85.302401) + (xy 79.272426 85.302402) + (xy 79.114606 85.348254) + (xy 79.114603 85.348255) + (xy 78.973137 85.431917) + (xy 78.973129 85.431923) + (xy 78.960872 85.444181) + (xy 78.899549 85.477666) + (xy 78.873191 85.4805) + (xy 78.554517 85.4805) + (xy 78.487478 85.460815) + (xy 78.441723 85.408011) + (xy 78.436811 85.395505) + (xy 78.434837 85.389547) + (xy 78.417314 85.336666) + (xy 78.325212 85.187344) + (xy 78.201156 85.063288) + (xy 78.051834 84.971186) + (xy 77.885297 84.916001) + (xy 77.885295 84.916) + (xy 77.78251 84.9055) + (xy 77.157498 84.9055) + (xy 77.15748 84.905501) + (xy 77.054703 84.916) + (xy 77.0547 84.916001) + (xy 76.888168 84.971185) + (xy 76.888163 84.971187) + (xy 76.738842 85.063289) + (xy 76.645181 85.156951) + (xy 76.583858 85.190436) + (xy 76.514166 85.185452) + (xy 76.469819 85.156951) + (xy 76.376157 85.063289) + (xy 76.376156 85.063288) + (xy 76.226834 84.971186) + (xy 76.060297 84.916001) + (xy 76.060295 84.916) + (xy 75.95751 84.9055) + (xy 75.332498 84.9055) + (xy 75.33248 84.905501) + (xy 75.229703 84.916) + (xy 75.2297 84.916001) + (xy 75.063168 84.971185) + (xy 75.063163 84.971187) + (xy 74.913842 85.063289) + (xy 74.789789 85.187342) + (xy 74.697687 85.336663) + (xy 74.697685 85.336668) + (xy 74.693845 85.348256) + (xy 74.642501 85.503203) + (xy 74.642501 85.503204) + (xy 74.6425 85.503204) + (xy 74.632 85.605983) + (xy 74.632 86.606001) + (xy 74.632001 86.606019) + (xy 74.6425 86.708796) + (xy 74.642501 86.708799) + (xy 74.697685 86.875331) + (xy 74.697687 86.875336) + (xy 74.706611 86.889804) + (xy 74.789788 87.024656) + (xy 74.913844 87.148712) + (xy 74.960596 87.177548) + (xy 75.00732 87.229494) + (xy 75.0195 87.283087) + (xy 75.0195 88.162255) + (xy 75.017775 88.177872) + (xy 75.018061 88.177899) + (xy 75.017326 88.185665) + (xy 75.019439 88.252872) + (xy 75.0195 88.256767) + (xy 75.0195 88.284357) + (xy 75.020003 88.288335) + (xy 75.020918 88.299967) + (xy 75.02229 88.343624) + (xy 75.022291 88.343627) + (xy 75.02788 88.362867) + (xy 75.031824 88.381911) + (xy 75.034336 88.401792) + (xy 75.050414 88.442403) + (xy 75.054197 88.453452) + (xy 75.066381 88.495388) + (xy 75.068657 88.499237) + (xy 75.085836 88.566962) + (xy 75.076887 88.606031) + (xy 75.0776 88.606276) + (xy 75.075936 88.61112) + (xy 75.014892 88.852175) + (xy 75.01489 88.852187) + (xy 74.994357 89.099994) + (xy 74.994357 89.100005) + (xy 75.01489 89.347812) + (xy 75.014892 89.347824) + (xy 75.075936 89.588881) + (xy 75.117443 89.683506) + (xy 75.175827 89.816607) + (xy 75.306742 90.016988) + (xy 75.326929 90.083877) + (xy 75.307749 90.151063) + (xy 75.262367 90.193637) + (xy 75.25767 90.196201) + (xy 75.142455 90.282452) + (xy 75.142452 90.282455) + (xy 75.056206 90.397664) + (xy 75.056202 90.397671) + (xy 75.005908 90.532517) + (xy 74.999501 90.592116) + (xy 74.999501 90.592123) + (xy 74.9995 90.592135) + (xy 74.9995 92.68787) + (xy 74.999501 92.687876) + (xy 75.005908 92.747483) + (xy 75.056202 92.882328) + (xy 75.056206 92.882335) + (xy 75.142452 92.997544) + (xy 75.142455 92.997547) + (xy 75.257664 93.083793) + (xy 75.257671 93.083797) + (xy 75.392517 93.134091) + (xy 75.392516 93.134091) + (xy 75.399444 93.134835) + (xy 75.452127 93.1405) + (xy 76.450851 93.140499) + (xy 76.51789 93.160183) + (xy 76.563645 93.212987) + (xy 76.573589 93.282146) + (xy 76.544564 93.345702) + (xy 76.538532 93.35218) + (xy 76.070208 93.820504) + (xy 76.057951 93.830325) + (xy 76.058134 93.830546) + (xy 76.052122 93.835519) + (xy 76.006098 93.884528) + (xy 76.003391 93.887321) + (xy 75.983889 93.906822) + (xy 75.983875 93.906839) + (xy 75.981407 93.91002) + (xy 75.973843 93.918875) + (xy 75.943937 93.950723) + (xy 75.943936 93.950725) + (xy 75.934284 93.968281) + (xy 75.92361 93.984531) + (xy 75.911329 94.000366) + (xy 75.911324 94.000373) + (xy 75.893975 94.040463) + (xy 75.888838 94.050949) + (xy 75.867803 94.089211) + (xy 75.862822 94.108612) + (xy 75.856521 94.127015) + (xy 75.848562 94.145407) + (xy 75.848561 94.14541) + (xy 75.841728 94.188548) + (xy 75.83936 94.199979) + (xy 75.828501 94.242276) + (xy 75.827523 94.250023) + (xy 75.82504 94.249709) + (xy 75.808815 94.304968) + (xy 75.756011 94.350723) + (xy 75.717104 94.361287) + (xy 75.65136 94.368004) + (xy 75.484782 94.423202) + (xy 75.484777 94.423204) + (xy 75.335417 94.515331) + (xy 75.211331 94.639417) + (xy 75.119204 94.788777) + (xy 75.119202 94.788782) + (xy 75.064003 94.955361) + (xy 75.0535 95.058166) + (xy 75.0535 96.457833) + (xy 75.064003 96.560638) + (xy 75.101369 96.673401) + (xy 75.119203 96.72722) + (xy 75.21133 96.876581) + (xy 75.335419 97.00067) + (xy 75.48478 97.092797) + (xy 75.632721 97.141819) + (xy 75.681398 97.171844) + (xy 76.365769 97.856215) + (xy 76.319862 97.863135) + (xy 76.197643 97.921993) + (xy 76.098202 98.01426) + (xy 76.030375 98.13174) + (xy 76.0125 98.210054) + (xy 75.302811 97.500365) + (xy 75.218516 97.62939) + (xy 75.125317 97.841864) + (xy 75.068361 98.066781) + (xy 75.049202 98.297994) + (xy 75.049202 98.298005) + (xy 75.068361 98.529218) + (xy 75.125317 98.754135) + (xy 75.218515 98.966606) + (xy 75.302812 99.095633) + (xy 76.009549 98.388895) + (xy 76.010327 98.399265) + (xy 76.059887 98.525541) + (xy 76.144465 98.631599) + (xy 76.256547 98.708016) + (xy 76.364299 98.741253) + (xy 75.655201 99.450351) + (xy 75.680226 99.469829) + (xy 75.721038 99.526539) + (xy 75.724713 99.596312) + (xy 75.690081 99.656995) + (xy 75.680226 99.665535) + (xy 75.502218 99.804085) + (xy 75.345016 99.974852) + (xy 75.218075 100.169151) + (xy 75.124842 100.381699) + (xy 75.067866 100.606691) + (xy 75.067864 100.606702) + (xy 75.0487 100.837993) + (xy 75.0487 100.838006) + (xy 75.067864 101.069297) + (xy 75.067866 101.069308) + (xy 75.124842 101.2943) + (xy 75.218075 101.506848) + (xy 75.345016 101.701147) + (xy 75.345019 101.701151) + (xy 75.345021 101.701153) + (xy 75.502216 101.871913) + (xy 75.502219 101.871915) + (xy 75.502222 101.871918) + (xy 75.685365 102.014464) + (xy 75.685371 102.014468) + (xy 75.685374 102.01447) + (xy 75.889497 102.124936) + (xy 75.968332 102.152) + (xy 76.109015 102.200297) + (xy 76.109017 102.200297) + (xy 76.109019 102.200298) + (xy 76.337951 102.2385) + (xy 76.337952 102.2385) + (xy 76.570048 102.2385) + (xy 76.570049 102.2385) + (xy 76.798981 102.200298) + (xy 77.018503 102.124936) + (xy 77.222626 102.01447) + (xy 77.405784 101.871913) + (xy 77.562979 101.701153) + (xy 77.689924 101.506849) + (xy 77.783157 101.2943) + (xy 77.840134 101.069305) + (xy 77.840135 101.069297) + (xy 77.8593 100.838006) + (xy 77.8593 100.837993) + (xy 77.840135 100.606702) + (xy 77.840133 100.606691) + (xy 77.783157 100.381699) + (xy 77.689924 100.169151) + (xy 77.562983 99.974852) + (xy 77.56298 99.974849) + (xy 77.562979 99.974847) + (xy 77.405784 99.804087) + (xy 77.227773 99.665536) + (xy 77.186961 99.608826) + (xy 77.183286 99.539053) + (xy 77.217917 99.47837) + (xy 77.227772 99.469831) + (xy 77.252797 99.450352) + (xy 77.252798 99.45035) + (xy 76.542232 98.739784) + (xy 76.588138 98.732865) + (xy 76.710357 98.674007) + (xy 76.809798 98.58174) + (xy 76.877625 98.46426) + (xy 76.895499 98.385946) + (xy 77.605186 99.095633) + (xy 77.689482 98.966611) + (xy 77.782682 98.754135) + (xy 77.839638 98.529218) + (xy 77.858798 98.298005) + (xy 77.858798 98.297994) + (xy 77.839638 98.066781) + (xy 77.782682 97.841864) + (xy 77.689484 97.629393) + (xy 77.605186 97.500365) + (xy 76.898449 98.207102) + (xy 76.897673 98.196735) + (xy 76.848113 98.070459) + (xy 76.763535 97.964401) + (xy 76.651453 97.887984) + (xy 76.543699 97.854746) + (xy 77.2266 97.171844) + (xy 77.275276 97.141819) + (xy 77.42322 97.092797) + (xy 77.572581 97.00067) + (xy 77.69667 96.876581) + (xy 77.788797 96.72722) + (xy 77.843996 96.560638) + (xy 77.8545 96.457826) + (xy 77.8545 95.081) + (xy 80.166 95.081) + (xy 80.166 95.653844) + (xy 80.172401 95.713372) + (xy 80.172403 95.713379) + (xy 80.222645 95.848086) + (xy 80.222649 95.848093) + (xy 80.308809 95.963187) + (xy 80.308812 95.96319) + (xy 80.423906 96.04935) + (xy 80.423913 96.049354) + (xy 80.55862 96.099596) + (xy 80.558627 96.099598) + (xy 80.618155 96.105999) + (xy 80.618172 96.106) + (xy 81.066 96.106) + (xy 81.066 95.081) + (xy 81.566 95.081) + (xy 81.566 96.106) + (xy 82.013828 96.106) + (xy 82.013844 96.105999) + (xy 82.073372 96.099598) + (xy 82.073379 96.099596) + (xy 82.208086 96.049354) + (xy 82.208093 96.04935) + (xy 82.323187 95.96319) + (xy 82.32319 95.963187) + (xy 82.40935 95.848093) + (xy 82.409354 95.848086) + (xy 82.459596 95.713379) + (xy 82.459598 95.713372) + (xy 82.465999 95.653844) + (xy 82.466 95.653827) + (xy 82.466 95.081) + (xy 81.566 95.081) + (xy 81.066 95.081) + (xy 80.166 95.081) + (xy 77.8545 95.081) + (xy 77.8545 95.058174) + (xy 77.843996 94.955362) + (xy 77.83579 94.930599) + (xy 77.825596 94.899834) + (xy 77.788797 94.78878) + (xy 77.69667 94.639419) + (xy 77.638251 94.581) + (xy 80.166 94.581) + (xy 81.066 94.581) + (xy 81.066 93.556) + (xy 81.566 93.556) + (xy 81.566 94.581) + (xy 82.466 94.581) + (xy 82.466 94.008172) + (xy 82.465999 94.008155) + (xy 82.459598 93.948627) + (xy 82.459596 93.94862) + (xy 82.409354 93.813913) + (xy 82.40935 93.813906) + (xy 82.32319 93.698812) + (xy 82.323187 93.698809) + (xy 82.208093 93.612649) + (xy 82.208086 93.612645) + (xy 82.073379 93.562403) + (xy 82.073372 93.562401) + (xy 82.013844 93.556) + (xy 81.566 93.556) + (xy 81.066 93.556) + (xy 80.618155 93.556) + (xy 80.558627 93.562401) + (xy 80.55862 93.562403) + (xy 80.423913 93.612645) + (xy 80.423906 93.612649) + (xy 80.308812 93.698809) + (xy 80.308809 93.698812) + (xy 80.222649 93.813906) + (xy 80.222645 93.813913) + (xy 80.172403 93.94862) + (xy 80.172401 93.948627) + (xy 80.166 94.008155) + (xy 80.166 94.581) + (xy 77.638251 94.581) + (xy 77.572581 94.51533) + (xy 77.572577 94.515327) + (xy 77.441326 94.43437) + (xy 77.394601 94.382422) + (xy 77.38338 94.31346) + (xy 77.411223 94.249378) + (xy 77.418731 94.241162) + (xy 88.133788 83.526106) + (xy 88.146042 83.516291) + (xy 88.145859 83.516069) + (xy 88.151868 83.511096) + (xy 88.151877 83.511091) + (xy 88.197949 83.462027) + (xy 88.200566 83.459328) + (xy 88.22012 83.439776) + (xy 88.222576 83.436608) + (xy 88.230156 83.427732) + (xy 88.260062 83.395887) + (xy 88.269713 83.378329) + (xy 88.280396 83.362066) + (xy 88.292673 83.346241) + (xy 88.310021 83.306149) + (xy 88.315151 83.295676) + (xy 88.336197 83.257397) + (xy 88.34118 83.237985) + (xy 88.347481 83.219585) + (xy 88.355437 83.201201) + (xy 88.36227 83.158053) + (xy 88.364633 83.146643) + (xy 88.3755 83.104324) + (xy 88.3755 83.084288) + (xy 88.377027 83.064887) + (xy 88.38016 83.045109) + (xy 88.37605 83.001629) + (xy 88.3755 82.98996) + (xy 88.3755 82.144854) + (xy 88.394507 82.078881) + (xy 88.404169 82.063505) + (xy 88.475789 81.949522) + (xy 88.535368 81.779255) + (xy 88.544682 81.696594) + (xy 88.555565 81.600003) + (xy 88.555565 81.599996) + (xy 88.535369 81.42075) + (xy 88.535366 81.420737) + (xy 88.520827 81.379187) + (xy 88.517265 81.309408) + (xy 88.551993 81.248781) + (xy 88.572769 81.232695) + (xy 88.718656 81.142712) + (xy 88.812319 81.049049) + (xy 88.873642 81.015564) + (xy 88.943334 81.020548) + (xy 88.987681 81.049049) + (xy 89.081344 81.142712) + (xy 89.230666 81.234814) + (xy 89.397203 81.289999) + (xy 89.499991 81.3005) + (xy 90.125008 81.300499) + (xy 90.125016 81.300498) + (xy 90.125019 81.300498) + (xy 90.140571 81.298909) + (xy 90.227797 81.289999) + (xy 90.228228 81.289856) + (xy 90.26237 81.278543) + (xy 90.332198 81.27614) + (xy 90.39224 81.311871) + (xy 90.406367 81.330273) + (xy 90.420184 81.352262) + (xy 90.547738 81.479816) + (xy 90.700478 81.575789) + (xy 90.841887 81.62527) + (xy 90.870745 81.635368) + (xy 90.87075 81.635369) + (xy 91.049996 81.655565) + (xy 91.05 81.655565) + (xy 91.050004 81.655565) + (xy 91.229249 81.635369) + (xy 91.229252 81.635368) + (xy 91.229255 81.635368) + (xy 91.399522 81.575789) + (xy 91.552262 81.479816) + (xy 91.679816 81.352262) + (xy 91.775789 81.199522) + (xy 91.835368 81.029255) + (xy 91.835774 81.025655) + (xy 91.855565 80.850003) + (xy 91.855565 80.849996) + (xy 91.835369 80.67075) + (xy 91.835368 80.670745) + (xy 91.825559 80.642712) + (xy 91.775789 80.500478) + (xy 91.775494 80.500009) + (xy 91.693387 80.369336) + (xy 91.679816 80.347738) + (xy 91.552262 80.220184) + (xy 91.524589 80.202796) + (xy 91.399521 80.12421) + (xy 91.229249 80.06463) + (xy 91.182174 80.059326) + (xy 91.11776 80.032259) + (xy 91.108378 80.023787) + (xy 90.861818 79.777227) + (xy 90.828333 79.715904) + (xy 90.825499 79.689546) + (xy 90.825499 79.599998) + (xy 90.825498 79.599981) + (xy 90.814999 79.497203) + (xy 90.814998 79.4972) + (xy 90.795215 79.437499) + (xy 90.759814 79.330666) + (xy 90.667712 79.181344) + (xy 90.543656 79.057288) + (xy 90.394334 78.965186) + (xy 90.227797 78.910001) + (xy 90.227795 78.91) + (xy 90.12501 78.8995) + (xy 89.499998 78.8995) + (xy 89.49998 78.899501) + (xy 89.397203 78.91) + (xy 89.3972 78.910001) + (xy 89.230668 78.965185) + (xy 89.230663 78.965187) + (xy 89.081342 79.057289) + (xy 88.987681 79.150951) + (xy 88.926358 79.184436) + (xy 88.856666 79.179452) + (xy 88.812319 79.150951) + (xy 88.718657 79.057289) + (xy 88.718656 79.057288) + (xy 88.569334 78.965186) + (xy 88.402797 78.910001) + (xy 88.402795 78.91) + (xy 88.300016 78.8995) + (xy 88.300009 78.8995) + (xy 88.034454 78.8995) + (xy 87.967415 78.879815) + (xy 87.92166 78.827011) + (xy 87.911716 78.757853) + (xy 87.940741 78.694297) + (xy 87.946773 78.687819) + (xy 87.971773 78.662819) + (xy 88.033096 78.629334) + (xy 88.059454 78.6265) + (xy 88.226686 78.6265) + (xy 88.226694 78.6265) + (xy 88.263569 78.623598) + (xy 88.263571 78.623597) + (xy 88.263573 78.623597) + (xy 88.307609 78.610803) + (xy 88.421398 78.577744) + (xy 88.562865 78.494081) + (xy 88.56287 78.494075) + (xy 88.569031 78.489298) + (xy 88.570933 78.49175) + (xy 88.619579 78.465155) + (xy 88.689274 78.470104) + (xy 88.721695 78.49094) + (xy 88.722969 78.489298) + (xy 88.729132 78.494078) + (xy 88.729135 78.494081) + (xy 88.870602 78.577744) + (xy 88.900176 78.586336) + (xy 89.028426 78.623597) + (xy 89.028429 78.623597) + (xy 89.028431 78.623598) + (xy 89.065306 78.6265) + (xy 89.065314 78.6265) + (xy 89.496686 78.6265) + (xy 89.496694 78.6265) + (xy 89.533569 78.623598) + (xy 89.533571 78.623597) + (xy 89.533573 78.623597) + (xy 89.577609 78.610803) + (xy 89.691398 78.577744) + (xy 89.832865 78.494081) + (xy 89.832868 78.494077) + (xy 89.839026 78.489301) + (xy 89.840839 78.491638) + (xy 89.889949 78.464798) + (xy 89.959643 78.469756) + (xy 89.991996 78.490551) + (xy 89.993278 78.4889) + (xy 89.999447 78.493685) + (xy 90.140801 78.577281) + (xy 90.298514 78.6231) + (xy 90.298511 78.6231) + (xy 90.300998 78.623295) + (xy 90.301 78.623295) + (xy 90.301 77.401) + (xy 90.801 77.401) + (xy 90.801 78.623295) + (xy 90.801001 78.623295) + (xy 90.803486 78.6231) + (xy 90.961198 78.577281) + (xy 91.102552 78.493685) + (xy 91.102561 78.493678) + (xy 91.218678 78.377561) + (xy 91.218685 78.377552) + (xy 91.302282 78.236196) + (xy 91.302283 78.236193) + (xy 91.348099 78.078495) + (xy 91.3481 78.078489) + (xy 91.350999 78.041649) + (xy 91.351 78.041634) + (xy 91.351 77.401) + (xy 90.801 77.401) + (xy 90.301 77.401) + (xy 90.301 77.025) + (xy 90.320685 76.957961) + (xy 90.373489 76.912206) + (xy 90.425 76.901) + (xy 91.350999 76.901) + (xy 91.352937 76.899062) + (xy 91.414259 76.865576) + (xy 91.483951 76.87056) + (xy 91.539885 76.91243) + (xy 91.558326 76.94774) + (xy 91.559493 76.951262) + (xy 91.563034 76.967237) + (xy 91.563092 76.967224) + (xy 91.564757 76.974249) + (xy 91.564758 76.974254) + (xy 91.564759 76.974255) + (xy 91.58784 77.037673) + (xy 91.5904 77.044705) + (xy 91.591582 77.048107) + (xy 91.615182 77.119326) + (xy 91.618236 77.125874) + (xy 91.618182 77.125898) + (xy 91.62147 77.132688) + (xy 91.621521 77.132663) + (xy 91.624761 77.139114) + (xy 91.665979 77.201784) + (xy 91.667889 77.204782) + (xy 91.698972 77.255174) + (xy 91.707289 77.268658) + (xy 91.711766 77.274319) + (xy 91.711719 77.274356) + (xy 91.716482 77.280202) + (xy 91.716528 77.280164) + (xy 91.721173 77.285699) + (xy 91.775709 77.337151) + (xy 91.778297 77.339665) + (xy 92.424268 77.985635) + (xy 92.436049 77.999267) + (xy 92.45039 78.01853) + (xy 92.488343 78.050376) + (xy 92.496319 78.057686) + (xy 92.500222 78.06159) + (xy 92.500223 78.061591) + (xy 92.524538 78.080816) + (xy 92.527293 78.083059) + (xy 92.584786 78.131302) + (xy 92.58479 78.131304) + (xy 92.590823 78.135272) + (xy 92.590789 78.135322) + (xy 92.597144 78.13937) + (xy 92.597177 78.139318) + (xy 92.603315 78.143104) + (xy 92.603323 78.14311) + (xy 92.671291 78.174804) + (xy 92.674479 78.176347) + (xy 92.697155 78.187735) + (xy 92.748228 78.235415) + (xy 92.765416 78.303137) + (xy 92.743262 78.369402) + (xy 92.729182 78.386225) + (xy 92.553708 78.561699) + (xy 92.541451 78.57152) + (xy 92.541634 78.571741) + (xy 92.535622 78.576714) + (xy 92.489598 78.625723) + (xy 92.486891 78.628516) + (xy 92.467389 78.648017) + (xy 92.467375 78.648034) + (xy 92.464907 78.651215) + (xy 92.457343 78.66007) + (xy 92.427437 78.691918) + (xy 92.427436 78.69192) + (xy 92.417784 78.709476) + (xy 92.40711 78.725726) + (xy 92.394829 78.741561) + (xy 92.394824 78.741568) + (xy 92.377475 78.781658) + (xy 92.372338 78.792144) + (xy 92.351303 78.830406) + (xy 92.346322 78.849807) + (xy 92.340021 78.86821) + (xy 92.332062 78.886602) + (xy 92.332061 78.886605) + (xy 92.325228 78.929743) + (xy 92.32286 78.941174) + (xy 92.312001 78.983471) + (xy 92.312 78.983482) + (xy 92.312 79.003516) + (xy 92.310473 79.022913) + (xy 92.30734 79.042696) + (xy 92.308986 79.060105) + (xy 92.31145 79.086174) + (xy 92.312 79.097843) + (xy 92.312 80.879755) + (xy 92.310275 80.895372) + (xy 92.310561 80.895399) + (xy 92.309826 80.903165) + (xy 92.311939 80.970372) + (xy 92.312 80.974267) + (xy 92.312 81.001857) + (xy 92.312503 81.005835) + (xy 92.313418 81.017467) + (xy 92.31479 81.061124) + (xy 92.314791 81.061127) + (xy 92.32038 81.080367) + (xy 92.324324 81.099411) + (xy 92.326209 81.11433) + (xy 92.326836 81.119292) + (xy 92.342914 81.159903) + (xy 92.346697 81.170952) + (xy 92.358881 81.212888) + (xy 92.36908 81.230134) + (xy 92.377638 81.247603) + (xy 92.385014 81.266232) + (xy 92.410681 81.30156) + (xy 92.417093 81.311321) + (xy 92.439328 81.348917) + (xy 92.439333 81.348924) + (xy 92.45349 81.36308) + (xy 92.466127 81.377875) + (xy 92.477906 81.394087) + (xy 92.510136 81.42075) + (xy 92.511557 81.421925) + (xy 92.520198 81.429788) + (xy 92.725681 81.635271) + (xy 92.759166 81.696594) + (xy 92.762 81.722952) + (xy 92.762 82.300001) + (xy 92.762001 82.300019) + (xy 92.7725 82.402796) + (xy 92.772501 82.402799) + (xy 92.827685 82.569331) + (xy 92.827687 82.569336) + (xy 92.827894 82.569671) + (xy 92.919788 82.718656) + (xy 93.043844 82.842712) + (xy 93.164514 82.917141) + (xy 93.211239 82.969089) + (xy 93.222462 83.038051) + (xy 93.194619 83.102133) + (xy 93.165392 83.127673) + (xy 93.097736 83.170185) + (xy 92.970184 83.297737) + (xy 92.874211 83.450476) + (xy 92.814631 83.620745) + (xy 92.81463 83.620749) + (xy 92.795943 83.786607) + (xy 92.768876 83.851021) + (xy 92.711281 83.890576) + (xy 92.686607 83.895943) + (xy 92.520749 83.91463) + (xy 92.520745 83.914631) + (xy 92.350476 83.974211) + (xy 92.197737 84.070184) + (xy 92.070184 84.197737) + (xy 91.974211 84.350476) + (xy 91.914631 84.520745) + (xy 91.91463 84.52075) + (xy 91.894435 84.699996) + (xy 91.894435 84.700003) + (xy 91.91463 84.879249) + (xy 91.914631 84.879254) + (xy 91.974211 85.049524) + (xy 92.041079 85.155942) + (xy 92.055155 85.178344) + (xy 92.055493 85.178881) + (xy 92.0745 85.244854) + (xy 92.0745 91.683255) + (xy 92.072775 91.698872) + (xy 92.073061 91.698899) + (xy 92.072326 91.706665) + (xy 92.074439 91.773872) + (xy 92.0745 91.777767) + (xy 92.0745 91.805357) + (xy 92.075003 91.809335) + (xy 92.075918 91.820967) + (xy 92.07729 91.864624) + (xy 92.077291 91.864627) + (xy 92.08288 91.883867) + (xy 92.086824 91.902911) + (xy 92.089336 91.922792) + (xy 92.105414 91.963403) + (xy 92.109197 91.974452) + (xy 92.121381 92.016388) + (xy 92.13158 92.033634) + (xy 92.140138 92.051103) + (xy 92.147514 92.069732) + (xy 92.173181 92.10506) + (xy 92.179593 92.114821) + (xy 92.201828 92.152417) + (xy 92.201833 92.152424) + (xy 92.21599 92.16658) + (xy 92.228628 92.181376) + (xy 92.240405 92.197586) + (xy 92.240406 92.197587) + (xy 92.274057 92.225425) + (xy 92.282698 92.233288) + (xy 93.393729 93.344319) + (xy 93.427214 93.405642) + (xy 93.42223 93.475334) + (xy 93.380358 93.531267) + (xy 93.314894 93.555684) + (xy 93.306048 93.556) + (xy 92.992155 93.556) + (xy 92.932627 93.562401) + (xy 92.93262 93.562403) + (xy 92.797913 93.612645) + (xy 92.797906 93.612649) + (xy 92.682812 93.698809) + (xy 92.682809 93.698812) + (xy 92.596649 93.813906) + (xy 92.596645 93.813913) + (xy 92.546403 93.94862) + (xy 92.546401 93.948627) + (xy 92.54 94.008155) + (xy 92.54 94.581) + (xy 93.816 94.581) + (xy 93.883039 94.600685) + (xy 93.928794 94.653489) + (xy 93.94 94.705) + (xy 93.94 96.106) + (xy 94.387828 96.106) + (xy 94.387844 96.105999) + (xy 94.447372 96.099598) + (xy 94.447379 96.099596) + (xy 94.582086 96.049354) + (xy 94.582093 96.04935) + (xy 94.697187 95.96319) + (xy 94.69719 95.963187) + (xy 94.78335 95.848093) + (xy 94.783354 95.848086) + (xy 94.833596 95.713379) + (xy 94.833598 95.713372) + (xy 94.839999 95.653844) + (xy 94.84 95.653827) + (xy 94.84 95.089952) + (xy 94.859685 95.022913) + (xy 94.912489 94.977158) + (xy 94.981647 94.967214) + (xy 95.045203 94.996239) + (xy 95.051681 95.002271) + (xy 95.688181 95.638771) + (xy 95.721666 95.700094) + (xy 95.7245 95.726452) + (xy 95.7245 99.105255) + (xy 95.722775 99.120872) + (xy 95.723061 99.120899) + (xy 95.722326 99.128665) + (xy 95.724439 99.195872) + (xy 95.7245 99.199767) + (xy 95.7245 99.227357) + (xy 95.725003 99.231335) + (xy 95.725918 99.242967) + (xy 95.72729 99.286624) + (xy 95.727291 99.286627) + (xy 95.73288 99.305867) + (xy 95.736824 99.324911) + (xy 95.739336 99.344792) + (xy 95.755414 99.385403) + (xy 95.759197 99.396452) + (xy 95.771382 99.43839) + (xy 95.778455 99.450351) + (xy 95.78158 99.455634) + (xy 95.790138 99.473103) + (xy 95.797514 99.491732) + (xy 95.823181 99.52706) + (xy 95.829593 99.536821) + (xy 95.851828 99.574417) + (xy 95.851833 99.574424) + (xy 95.86599 99.58858) + (xy 95.878628 99.603376) + (xy 95.890405 99.619586) + (xy 95.890406 99.619587) + (xy 95.924057 99.647425) + (xy 95.932698 99.655288) + (xy 96.703762 100.426352) + (xy 96.737247 100.487675) + (xy 96.735856 100.546126) + (xy 96.708938 100.646586) + (xy 96.708936 100.646596) + (xy 96.688341 100.881999) + (xy 96.688341 100.882) + (xy 96.708936 101.117403) + (xy 96.708938 101.117413) + (xy 96.770094 101.345655) + (xy 96.770096 101.345659) + (xy 96.770097 101.345663) + (xy 96.847849 101.512403) + (xy 96.869965 101.55983) + (xy 96.869967 101.559834) + (xy 96.978281 101.714521) + (xy 97.005501 101.753396) + (xy 97.005506 101.753402) + (xy 97.172597 101.920493) + (xy 97.172603 101.920498) + (xy 97.358594 102.05073) + (xy 97.402219 102.105307) + (xy 97.409413 102.174805) + (xy 97.37789 102.23716) + (xy 97.358595 102.25388) + (xy 97.172922 102.38389) + (xy 97.17292 102.383891) + (xy 97.005891 102.55092) + (xy 97.005886 102.550926) + (xy 96.8704 102.74442) + (xy 96.870399 102.744422) + (xy 96.77057 102.958507) + (xy 96.770567 102.958513) + (xy 96.713364 103.171999) + (xy 96.713364 103.172) + (xy 97.610314 103.172) + (xy 97.584507 103.212156) + (xy 97.544 103.350111) + (xy 97.544 103.493889) + (xy 97.584507 103.631844) + (xy 97.610314 103.672) + (xy 96.713364 103.672) + (xy 96.770567 103.885486) + (xy 96.770571 103.885497) + (xy 96.841003 104.036539) + (xy 96.851495 104.105616) + (xy 96.822975 104.1694) + (xy 96.781854 104.196908) + (xy 96.783391 104.199924) + (xy 96.774697 104.204353) + (xy 96.774696 104.204354) + (xy 96.661658 104.26195) + (xy 96.661657 104.261951) + (xy 96.661652 104.261954) + (xy 96.571954 104.351652) + (xy 96.571951 104.351657) + (xy 96.514352 104.464698) + (xy 96.514352 104.464699) + (xy 96.494508 104.589996) + (xy 96.494508 104.590003) + (xy 96.514352 104.7153) + (xy 96.514352 104.715301) + (xy 96.526427 104.738998) + (xy 96.57195 104.828342) + (xy 96.571952 104.828344) + (xy 96.571954 104.828347) + (xy 96.661652 104.918045) + (xy 96.661654 104.918046) + (xy 96.661658 104.91805) + (xy 96.774696 104.975646) + (xy 96.774697 104.975646) + (xy 96.774699 104.975647) + (xy 96.858919 104.988986) + (xy 96.922054 105.018915) + (xy 96.958986 105.078226) + (xy 96.957988 105.148089) + (xy 96.941097 105.182582) + (xy 96.869965 105.284169) + (xy 96.869964 105.284171) + (xy 96.770098 105.498335) + (xy 96.770094 105.498344) + (xy 96.708938 105.726586) + (xy 96.708936 105.726596) + (xy 96.688341 105.961999) + (xy 96.688341 105.962) + (xy 96.708936 106.197403) + (xy 96.708938 106.197413) + (xy 96.770094 106.425655) + (xy 96.770096 106.425659) + (xy 96.770097 106.425663) + (xy 96.810883 106.513128) + (xy 96.869965 106.63983) + (xy 96.869967 106.639834) + (xy 96.929872 106.725386) + (xy 97.005501 106.833396) + (xy 97.005506 106.833402) + (xy 97.172597 107.000493) + (xy 97.172603 107.000498) + (xy 97.358158 107.130425) + (xy 97.401783 107.185002) + (xy 97.408977 107.2545) + (xy 97.377454 107.316855) + (xy 97.358158 107.333575) + (xy 97.172597 107.463505) + (xy 97.005508 107.630595) + (xy 97.005499 107.630606) + (xy 96.970703 107.6803) + (xy 96.916126 107.723925) + (xy 96.846628 107.731117) + (xy 96.784273 107.699594) + (xy 96.781448 107.696857) + (xy 94.396272 105.311681) + (xy 94.362787 105.250358) + (xy 94.367771 105.180666) + (xy 94.409643 105.124733) + (xy 94.475107 105.100316) + (xy 94.483953 105.1) + (xy 95.2 105.1) + (xy 95.4 104.9) + (xy 95.4 104.3) + (xy 95.2 104.1) + (xy 94.805064 104.1) + (xy 94.738025 104.080315) + (xy 94.69227 104.027511) + (xy 94.682326 103.958353) + (xy 94.705798 103.901688) + (xy 94.783352 103.798089) + (xy 94.783354 103.798086) + (xy 94.833596 103.663379) + (xy 94.833598 103.663372) + (xy 94.839999 103.603844) + (xy 94.84 103.603827) + (xy 94.84 103.031) + (xy 92.54 103.031) + (xy 92.54 103.603844) + (xy 92.546401 103.663372) + (xy 92.546403 103.663379) + (xy 92.596645 103.798086) + (xy 92.596647 103.798089) + (xy 92.674202 103.901688) + (xy 92.69862 103.967152) + (xy 92.683769 104.035426) + (xy 92.634364 104.084832) + (xy 92.574936 104.1) + (xy 90.305689 104.1) + (xy 90.23865 104.080315) + (xy 90.192895 104.027511) + (xy 90.182951 103.958353) + (xy 90.206422 103.901689) + (xy 90.218543 103.885497) + (xy 90.283796 103.798331) + (xy 90.334091 103.663483) + (xy 90.3405 103.603873) + (xy 90.340499 102.531) + (xy 92.54 102.531) + (xy 93.44 102.531) + (xy 93.44 101.506) + (xy 93.94 101.506) + (xy 93.94 102.531) + (xy 94.84 102.531) + (xy 94.84 101.958172) + (xy 94.839999 101.958155) + (xy 94.833598 101.898627) + (xy 94.833596 101.89862) + (xy 94.783354 101.763913) + (xy 94.78335 101.763906) + (xy 94.69719 101.648812) + (xy 94.697187 101.648809) + (xy 94.582093 101.562649) + (xy 94.582086 101.562645) + (xy 94.447379 101.512403) + (xy 94.447372 101.512401) + (xy 94.387844 101.506) + (xy 93.94 101.506) + (xy 93.44 101.506) + (xy 92.992155 101.506) + (xy 92.932627 101.512401) + (xy 92.93262 101.512403) + (xy 92.797913 101.562645) + (xy 92.797906 101.562649) + (xy 92.682812 101.648809) + (xy 92.682809 101.648812) + (xy 92.596649 101.763906) + (xy 92.596645 101.763913) + (xy 92.546403 101.89862) + (xy 92.546401 101.898627) + (xy 92.54 101.958155) + (xy 92.54 102.531) + (xy 90.340499 102.531) + (xy 90.340499 101.958128) + (xy 90.334091 101.898517) + (xy 90.32417 101.871918) + (xy 90.283797 101.763671) + (xy 90.283793 101.763664) + (xy 90.197547 101.648455) + (xy 90.197544 101.648452) + (xy 90.082335 101.562206) + (xy 90.082328 101.562202) + (xy 89.947483 101.511908) + (xy 89.926243 101.509625) + (xy 89.861692 101.482886) + (xy 89.821845 101.425493) + (xy 89.8155 101.386336) + (xy 89.8155 96.225663) + (xy 89.835185 96.158624) + (xy 89.887989 96.112869) + (xy 89.926248 96.102373) + (xy 89.947483 96.100091) + (xy 90.082331 96.049796) + (xy 90.197546 95.963546) + (xy 90.283796 95.848331) + (xy 90.334091 95.713483) + (xy 90.3405 95.653873) + (xy 90.3405 95.081) + (xy 92.54 95.081) + (xy 92.54 95.653844) + (xy 92.546401 95.713372) + (xy 92.546403 95.713379) + (xy 92.596645 95.848086) + (xy 92.596649 95.848093) + (xy 92.682809 95.963187) + (xy 92.682812 95.96319) + (xy 92.797906 96.04935) + (xy 92.797913 96.049354) + (xy 92.93262 96.099596) + (xy 92.932627 96.099598) + (xy 92.992155 96.105999) + (xy 92.992172 96.106) + (xy 93.44 96.106) + (xy 93.44 95.081) + (xy 92.54 95.081) + (xy 90.3405 95.081) + (xy 90.340499 94.008128) + (xy 90.334091 93.948517) + (xy 90.330852 93.939834) + (xy 90.283797 93.813671) + (xy 90.283793 93.813664) + (xy 90.197547 93.698455) + (xy 90.197544 93.698452) + (xy 90.082335 93.612206) + (xy 90.08233 93.612203) + (xy 90.022819 93.590007) + (xy 89.966886 93.548135) + (xy 89.942469 93.482671) + (xy 89.949112 93.43287) + (xy 89.985366 93.329262) + (xy 89.985369 93.329249) + (xy 90.005565 93.150003) + (xy 90.005565 93.149996) + (xy 89.985369 92.97075) + (xy 89.985368 92.970745) + (xy 89.954432 92.882335) + (xy 89.925789 92.800478) + (xy 89.924442 92.798335) + (xy 89.855034 92.687872) + (xy 89.829816 92.647738) + (xy 89.702262 92.520184) + (xy 89.603391 92.458059) + (xy 89.549523 92.424211) + (xy 89.379254 92.364631) + (xy 89.379249 92.36463) + (xy 89.200004 92.344435) + (xy 89.199996 92.344435) + (xy 89.02075 92.36463) + (xy 89.020745 92.364631) + (xy 88.850476 92.424211) + (xy 88.697737 92.520184) + (xy 88.570184 92.647737) + (xy 88.474211 92.800476) + (xy 88.414631 92.970745) + (xy 88.41463 92.97075) + (xy 88.394435 93.149996) + (xy 88.394435 93.150003) + (xy 88.41463 93.329249) + (xy 88.414632 93.329257) + (xy 88.448579 93.426273) + (xy 88.45214 93.496052) + (xy 88.417411 93.556679) + (xy 88.374871 93.583409) + (xy 88.297669 93.612203) + (xy 88.297664 93.612206) + (xy 88.182455 93.698452) + (xy 88.182452 93.698455) + (xy 88.096206 93.813664) + (xy 88.096202 93.813671) + (xy 88.045908 93.948517) + (xy 88.039501 94.008116) + (xy 88.039501 94.008123) + (xy 88.0395 94.008135) + (xy 88.0395 95.65387) + (xy 88.039501 95.653876) + (xy 88.045908 95.713483) + (xy 88.096202 95.848328) + (xy 88.096206 95.848335) + (xy 88.182452 95.963544) + (xy 88.182455 95.963547) + (xy 88.297664 96.049793) + (xy 88.297671 96.049797) + (xy 88.303578 96.052) + (xy 88.432517 96.100091) + (xy 88.453756 96.102374) + (xy 88.518304 96.12911) + (xy 88.558154 96.186502) + (xy 88.5645 96.225663) + (xy 88.5645 101.386336) + (xy 88.544815 101.453375) + (xy 88.492011 101.49913) + (xy 88.453754 101.509626) + (xy 88.432516 101.511909) + (xy 88.297671 101.562202) + (xy 88.297664 101.562206) + (xy 88.182455 101.648452) + (xy 88.182452 101.648455) + (xy 88.096206 101.763664) + (xy 88.096202 101.763671) + (xy 88.045908 101.898517) + (xy 88.039501 101.958116) + (xy 88.039501 101.958123) + (xy 88.0395 101.958135) + (xy 88.0395 103.60387) + (xy 88.039501 103.603876) + (xy 88.045908 103.663483) + (xy 88.096202 103.798328) + (xy 88.096203 103.79833) + (xy 88.173578 103.901689) + (xy 88.197995 103.967153) + (xy 88.183144 104.035426) + (xy 88.133739 104.084832) + (xy 88.074311 104.1) + (xy 88.070952 104.1) + (xy 88.003913 104.080315) + (xy 87.983271 104.063681) + (xy 87.002818 103.083227) + (xy 86.969333 103.021904) + (xy 86.966499 102.995546) + (xy 86.966499 101.958129) + (xy 86.966498 101.958123) + (xy 86.966497 101.958116) + (xy 86.960091 101.898517) + (xy 86.95017 101.871918) + (xy 86.909797 101.763671) + (xy 86.909793 101.763664) + (xy 86.823547 101.648455) + (xy 86.823544 101.648452) + (xy 86.708335 101.562206) + (xy 86.708328 101.562202) + (xy 86.573483 101.511908) + (xy 86.552243 101.509625) + (xy 86.487692 101.482886) + (xy 86.447845 101.425493) + (xy 86.4415 101.386336) + (xy 86.4415 96.225663) + (xy 86.461185 96.158624) + (xy 86.513989 96.112869) + (xy 86.552248 96.102373) + (xy 86.573483 96.100091) + (xy 86.708331 96.049796) + (xy 86.823546 95.963546) + (xy 86.909796 95.848331) + (xy 86.960091 95.713483) + (xy 86.9665 95.653873) + (xy 86.966499 94.008128) + (xy 86.960091 93.948517) + (xy 86.956852 93.939834) + (xy 86.909797 93.813671) + (xy 86.909793 93.813664) + (xy 86.843915 93.725664) + (xy 86.823546 93.698454) + (xy 86.708331 93.612204) + (xy 86.708329 93.612203) + (xy 86.704872 93.609615) + (xy 86.663001 93.553681) + (xy 86.65726 93.506964) + (xy 86.655565 93.506964) + (xy 86.655565 93.499997) + (xy 86.635369 93.32075) + (xy 86.635368 93.320745) + (xy 86.575788 93.150476) + (xy 86.536582 93.08808) + (xy 86.479816 92.997738) + (xy 86.352262 92.870184) + (xy 86.241326 92.800478) + (xy 86.199523 92.774211) + (xy 86.029254 92.714631) + (xy 86.029249 92.71463) + (xy 85.850004 92.694435) + (xy 85.849996 92.694435) + (xy 85.67075 92.71463) + (xy 85.670745 92.714631) + (xy 85.500476 92.774211) + (xy 85.347737 92.870184) + (xy 85.220184 92.997737) + (xy 85.124211 93.150476) + (xy 85.064631 93.320745) + (xy 85.06463 93.320749) + (xy 85.045062 93.494424) + (xy 85.017995 93.558838) + (xy 84.965179 93.596721) + (xy 84.923664 93.612206) + (xy 84.808455 93.698452) + (xy 84.808452 93.698455) + (xy 84.722206 93.813664) + (xy 84.722202 93.813671) + (xy 84.671908 93.948517) + (xy 84.665501 94.008116) + (xy 84.665501 94.008123) + (xy 84.6655 94.008135) + (xy 84.6655 95.65387) + (xy 84.665501 95.653876) + (xy 84.671908 95.713483) + (xy 84.722202 95.848328) + (xy 84.722206 95.848335) + (xy 84.808452 95.963544) + (xy 84.808455 95.963547) + (xy 84.923664 96.049793) + (xy 84.923671 96.049797) + (xy 84.929578 96.052) + (xy 85.058517 96.100091) + (xy 85.079756 96.102374) + (xy 85.144304 96.12911) + (xy 85.184154 96.186502) + (xy 85.1905 96.225663) + (xy 85.1905 101.386336) + (xy 85.170815 101.453375) + (xy 85.118011 101.49913) + (xy 85.079754 101.509626) + (xy 85.058516 101.511909) + (xy 84.923671 101.562202) + (xy 84.923664 101.562206) + (xy 84.808455 101.648452) + (xy 84.808452 101.648455) + (xy 84.722206 101.763664) + (xy 84.722202 101.763671) + (xy 84.671908 101.898517) + (xy 84.665501 101.958116) + (xy 84.665501 101.958123) + (xy 84.6655 101.958135) + (xy 84.6655 103.60387) + (xy 84.665501 103.603876) + (xy 84.671908 103.663483) + (xy 84.722202 103.798328) + (xy 84.722203 103.79833) + (xy 84.799578 103.901689) + (xy 84.823995 103.967153) + (xy 84.809144 104.035426) + (xy 84.759739 104.084832) + (xy 84.700311 104.1) + (xy 82.431064 104.1) + (xy 82.364025 104.080315) + (xy 82.31827 104.027511) + (xy 82.308326 103.958353) + (xy 82.331798 103.901688) + (xy 82.409352 103.798089) + (xy 82.409354 103.798086) + (xy 82.459596 103.663379) + (xy 82.459598 103.663372) + (xy 82.465999 103.603844) + (xy 82.466 103.603827) + (xy 82.466 103.031) + (xy 80.166 103.031) + (xy 80.166 103.603844) + (xy 80.172401 103.663372) + (xy 80.172403 103.663379) + (xy 80.222645 103.798086) + (xy 80.222647 103.798089) + (xy 80.300202 103.901688) + (xy 80.32462 103.967152) + (xy 80.309769 104.035426) + (xy 80.260364 104.084832) + (xy 80.200936 104.1) + (xy 77.499999 104.1) + (xy 77.3 104.299999) + (xy 77.3 104.3) + (xy 77.3 104.9) + (xy 77.5 105.1) + (xy 87.199048 105.1) + (xy 87.266087 105.119685) + (xy 87.286729 105.136319) + (xy 87.999229 105.848819) + (xy 88.032714 105.910142) + (xy 88.02773 105.979834) + (xy 87.985858 106.035767) + (xy 87.920394 106.060184) + (xy 87.911552 106.0605) + (xy 87.882131 106.0605) + (xy 87.882123 106.060501) + (xy 87.822516 106.066908) + (xy 87.687671 106.117202) + (xy 87.687666 106.117205) + (xy 87.679614 106.123233) + (xy 87.614149 106.147648) + (xy 87.55053 106.134104) + (xy 87.550359 106.134518) + (xy 87.548123 106.133592) + (xy 87.54685 106.133321) + (xy 87.544729 106.132187) + (xy 87.544728 106.132186) + (xy 87.544727 106.132186) + (xy 87.356132 106.074976) + (xy 87.356129 106.074975) + (xy 87.16 106.055659) + (xy 86.96387 106.074975) + (xy 86.775266 106.132188) + (xy 86.601467 106.225086) + (xy 86.596399 106.228473) + (xy 86.595305 106.226836) + (xy 86.539337 106.250596) + (xy 86.470471 106.238795) + (xy 86.453843 106.228109) + (xy 86.453601 106.228473) + (xy 86.448532 106.225086) + (xy 86.274733 106.132188) + (xy 86.274727 106.132186) + (xy 86.086132 106.074976) + (xy 86.086129 106.074975) + (xy 85.89 106.055659) + (xy 85.69387 106.074975) + (xy 85.505266 106.132188) + (xy 85.331467 106.225086) + (xy 85.326399 106.228473) + (xy 85.325305 106.226836) + (xy 85.269337 106.250596) + (xy 85.200471 106.238795) + (xy 85.183843 106.228109) + (xy 85.183601 106.228473) + (xy 85.178532 106.225086) + (xy 85.004733 106.132188) + (xy 85.004727 106.132186) + (xy 84.816132 106.074976) + (xy 84.816129 106.074975) + (xy 84.62 106.055659) + (xy 84.42387 106.074975) + (xy 84.235266 106.132188) + (xy 84.061467 106.225086) + (xy 84.056399 106.228473) + (xy 84.055305 106.226836) + (xy 83.999337 106.250596) + (xy 83.930471 106.238795) + (xy 83.913843 106.228109) + (xy 83.913601 106.228473) + (xy 83.908532 106.225086) + (xy 83.734733 106.132188) + (xy 83.734727 106.132186) + (xy 83.546132 106.074976) + (xy 83.546129 106.074975) + (xy 83.35 106.055659) + (xy 83.15387 106.074975) + (xy 82.965266 106.132188) + (xy 82.791467 106.225086) + (xy 82.786399 106.228473) + (xy 82.785305 106.226836) + (xy 82.729337 106.250596) + (xy 82.660471 106.238795) + (xy 82.643843 106.228109) + (xy 82.643601 106.228473) + (xy 82.638532 106.225086) + (xy 82.464733 106.132188) + (xy 82.464727 106.132186) + (xy 82.276132 106.074976) + (xy 82.276129 106.074975) + (xy 82.08 106.055659) + (xy 81.88387 106.074975) + (xy 81.695266 106.132188) + (xy 81.521467 106.225086) + (xy 81.516399 106.228473) + (xy 81.515305 106.226836) + (xy 81.459337 106.250596) + (xy 81.390471 106.238795) + (xy 81.373843 106.228109) + (xy 81.373601 106.228473) + (xy 81.368532 106.225086) + (xy 81.194733 106.132188) + (xy 81.194727 106.132186) + (xy 81.006132 106.074976) + (xy 81.006129 106.074975) + (xy 80.81 106.055659) + (xy 80.61387 106.074975) + (xy 80.425266 106.132188) + (xy 80.251467 106.225086) + (xy 80.246399 106.228473) + (xy 80.245386 106.226958) + (xy 80.188936 106.25092) + (xy 80.120071 106.239115) + (xy 80.103574 106.228511) + (xy 80.103322 106.22889) + (xy 80.098253 106.225503) + (xy 79.924541 106.132652) + (xy 79.79 106.091839) + (xy 79.79 106.812061) + (xy 79.708885 106.748928) + (xy 79.598405 106.711) + (xy 79.510995 106.711) + (xy 79.424784 106.725386) + (xy 79.322053 106.780981) + (xy 79.29 106.815799) + (xy 79.29 106.091839) + (xy 79.289999 106.091839) + (xy 79.155458 106.132652) + (xy 78.981742 106.225505) + (xy 78.976673 106.228893) + (xy 78.975556 106.227221) + (xy 78.919715 106.250921) + (xy 78.850851 106.239111) + (xy 78.833811 106.228158) + (xy 78.833601 106.228473) + (xy 78.828532 106.225086) + (xy 78.654733 106.132188) + (xy 78.654727 106.132186) + (xy 78.466132 106.074976) + (xy 78.466129 106.074975) + (xy 78.27 106.055659) + (xy 78.07387 106.074975) + (xy 77.885266 106.132188) + (xy 77.711467 106.225086) + (xy 77.706399 106.228473) + (xy 77.705305 106.226836) + (xy 77.649337 106.250596) + (xy 77.580471 106.238795) + (xy 77.563843 106.228109) + (xy 77.563601 106.228473) + (xy 77.558532 106.225086) + (xy 77.384733 106.132188) + (xy 77.384727 106.132186) + (xy 77.196132 106.074976) + (xy 77.196129 106.074975) + (xy 77 106.055659) + (xy 76.80387 106.074975) + (xy 76.615266 106.132188) + (xy 76.441467 106.225086) + (xy 76.436399 106.228473) + (xy 76.435305 106.226836) + (xy 76.379337 106.250596) + (xy 76.310471 106.238795) + (xy 76.293843 106.228109) + (xy 76.293601 106.228473) + (xy 76.288532 106.225086) + (xy 76.114733 106.132188) + (xy 76.114727 106.132186) + (xy 75.926132 106.074976) + (xy 75.926129 106.074975) + (xy 75.73 106.055659) + (xy 75.53387 106.074975) + (xy 75.345266 106.132188) + (xy 75.171467 106.225086) + (xy 75.17146 106.22509) + (xy 75.019116 106.350116) + (xy 74.89409 106.50246) + (xy 74.894086 106.502467) + (xy 74.801188 106.676266) + (xy 74.743975 106.86487) + (xy 74.724659 107.061) + (xy 74.743975 107.257129) + (xy 74.801188 107.445733) + (xy 74.894086 107.619532) + (xy 74.89409 107.619539) + (xy 75.019116 107.771883) + (xy 75.17146 107.896909) + (xy 75.171467 107.896913) + (xy 75.345266 107.989811) + (xy 75.345269 107.989811) + (xy 75.345273 107.989814) + (xy 75.533868 108.047024) + (xy 75.73 108.066341) + (xy 75.926132 108.047024) + (xy 76.114727 107.989814) + (xy 76.288538 107.89691) + (xy 76.288544 107.896904) + (xy 76.293607 107.893523) + (xy 76.294703 107.895164) + (xy 76.350639 107.871405) + (xy 76.419507 107.883194) + (xy 76.436148 107.893888) + (xy 76.436393 107.893523) + (xy 76.441458 107.896907) + (xy 76.441462 107.89691) + (xy 76.615273 107.989814) + (xy 76.803868 108.047024) + (xy 77 108.066341) + (xy 77.196132 108.047024) + (xy 77.384727 107.989814) + (xy 77.558538 107.89691) + (xy 77.558544 107.896904) + (xy 77.563607 107.893523) + (xy 77.564703 107.895164) + (xy 77.620639 107.871405) + (xy 77.689507 107.883194) + (xy 77.706148 107.893888) + (xy 77.706393 107.893523) + (xy 77.711458 107.896907) + (xy 77.711462 107.89691) + (xy 77.885273 107.989814) + (xy 78.073868 108.047024) + (xy 78.27 108.066341) + (xy 78.466132 108.047024) + (xy 78.654727 107.989814) + (xy 78.828538 107.89691) + (xy 78.828544 107.896904) + (xy 78.833607 107.893523) + (xy 78.834624 107.895045) + (xy 78.891021 107.871084) + (xy 78.95989 107.882866) + (xy 78.976424 107.893489) + (xy 78.976678 107.89311) + (xy 78.981738 107.896491) + (xy 79.155465 107.989349) + (xy 79.29 108.030159) + (xy 79.29 107.309938) + (xy 79.371115 107.373072) + (xy 79.481595 107.411) + (xy 79.569005 107.411) + (xy 79.655216 107.396614) + (xy 79.757947 107.341019) + (xy 79.79 107.3062) + (xy 79.79 108.030159) + (xy 79.924538 107.989348) + (xy 80.002047 107.947919) + (xy 80.07045 107.933677) + (xy 80.135693 107.958677) + (xy 80.177064 108.014982) + (xy 80.1845 108.057277) + (xy 80.1845 110.409067) + (xy 80.164815 110.476106) + (xy 80.112011 110.521861) + (xy 80.042853 110.531805) + (xy 80.002047 110.518425) + (xy 79.914541 110.471652) + (xy 79.78 110.430839) + (xy 79.78 111.151061) + (xy 79.698885 111.087928) + (xy 79.588405 111.05) + (xy 79.500995 111.05) + (xy 79.414784 111.064386) + (xy 79.312053 111.119981) + (xy 79.28 111.154799) + (xy 79.28 110.430839) + (xy 79.279999 110.430839) + (xy 79.145458 110.471652) + (xy 78.971742 110.564505) + (xy 78.966673 110.567893) + (xy 78.965556 110.566221) + (xy 78.909715 110.589921) + (xy 78.840851 110.578111) + (xy 78.823811 110.567158) + (xy 78.823601 110.567473) + (xy 78.818532 110.564086) + (xy 78.644733 110.471188) + (xy 78.644727 110.471186) + (xy 78.456132 110.413976) + (xy 78.456129 110.413975) + (xy 78.26 110.394659) + (xy 78.06387 110.413975) + (xy 77.875266 110.471188) + (xy 77.701467 110.564086) + (xy 77.696399 110.567473) + (xy 77.695305 110.565836) + (xy 77.639337 110.589596) + (xy 77.570471 110.577795) + (xy 77.553843 110.567109) + (xy 77.553601 110.567473) + (xy 77.548532 110.564086) + (xy 77.374733 110.471188) + (xy 77.374727 110.471186) + (xy 77.186132 110.413976) + (xy 77.186129 110.413975) + (xy 76.99 110.394659) + (xy 76.79387 110.413975) + (xy 76.605266 110.471188) + (xy 76.431467 110.564086) + (xy 76.426399 110.567473) + (xy 76.425305 110.565836) + (xy 76.369337 110.589596) + (xy 76.300471 110.577795) + (xy 76.283843 110.567109) + (xy 76.283601 110.567473) + (xy 76.278532 110.564086) + (xy 76.104733 110.471188) + (xy 76.104727 110.471186) + (xy 75.916132 110.413976) + (xy 75.916129 110.413975) + (xy 75.72 110.394659) + (xy 75.52387 110.413975) + (xy 75.335266 110.471188) + (xy 75.161467 110.564086) + (xy 75.16146 110.56409) + (xy 75.009116 110.689116) + (xy 74.88409 110.84146) + (xy 74.884086 110.841467) + (xy 74.791188 111.015266) + (xy 74.733975 111.20387) + (xy 74.714659 111.4) + (xy 74.733975 111.596129) + (xy 74.791188 111.784733) + (xy 74.884086 111.958532) + (xy 74.88409 111.958539) + (xy 75.009116 112.110883) + (xy 75.16146 112.235909) + (xy 75.161467 112.235913) + (xy 75.335266 112.328811) + (xy 75.335269 112.328811) + (xy 75.335273 112.328814) + (xy 75.523868 112.386024) + (xy 75.72 112.405341) + (xy 75.916132 112.386024) + (xy 76.104727 112.328814) + (xy 76.278538 112.23591) + (xy 76.278544 112.235904) + (xy 76.283607 112.232523) + (xy 76.284703 112.234164) + (xy 76.340639 112.210405) + (xy 76.409507 112.222194) + (xy 76.426148 112.232888) + (xy 76.426393 112.232523) + (xy 76.431458 112.235907) + (xy 76.431462 112.23591) + (xy 76.605273 112.328814) + (xy 76.793868 112.386024) + (xy 76.99 112.405341) + (xy 77.186132 112.386024) + (xy 77.374727 112.328814) + (xy 77.548538 112.23591) + (xy 77.548544 112.235904) + (xy 77.553607 112.232523) + (xy 77.554703 112.234164) + (xy 77.610639 112.210405) + (xy 77.679507 112.222194) + (xy 77.696148 112.232888) + (xy 77.696393 112.232523) + (xy 77.701458 112.235907) + (xy 77.701462 112.23591) + (xy 77.875273 112.328814) + (xy 78.063868 112.386024) + (xy 78.26 112.405341) + (xy 78.456132 112.386024) + (xy 78.644727 112.328814) + (xy 78.818538 112.23591) + (xy 78.818544 112.235904) + (xy 78.823607 112.232523) + (xy 78.824624 112.234045) + (xy 78.881021 112.210084) + (xy 78.94989 112.221866) + (xy 78.966424 112.232489) + (xy 78.966678 112.23211) + (xy 78.971738 112.235491) + (xy 79.145465 112.328349) + (xy 79.28 112.369159) + (xy 79.28 111.648938) + (xy 79.361115 111.712072) + (xy 79.471595 111.75) + (xy 79.559005 111.75) + (xy 79.645216 111.735614) + (xy 79.747947 111.680019) + (xy 79.78 111.6452) + (xy 79.78 112.369159) + (xy 79.914538 112.328348) + (xy 79.992047 112.286919) + (xy 80.06045 112.272677) + (xy 80.125693 112.297677) + (xy 80.167064 112.353982) + (xy 80.1745 112.396277) + (xy 80.1745 114.803722) + (xy 80.154815 114.870761) + (xy 80.102011 114.916516) + (xy 80.032853 114.92646) + (xy 79.992047 114.91308) + (xy 79.914541 114.871652) + (xy 79.78 114.830839) + (xy 79.78 115.551061) + (xy 79.698885 115.487928) + (xy 79.588405 115.45) + (xy 79.500995 115.45) + (xy 79.414784 115.464386) + (xy 79.312053 115.519981) + (xy 79.28 115.554799) + (xy 79.28 114.830839) + (xy 79.279999 114.830839) + (xy 79.145458 114.871652) + (xy 78.971742 114.964505) + (xy 78.966673 114.967893) + (xy 78.965556 114.966221) + (xy 78.909715 114.989921) + (xy 78.840851 114.978111) + (xy 78.823811 114.967158) + (xy 78.823601 114.967473) + (xy 78.818532 114.964086) + (xy 78.644733 114.871188) + (xy 78.644727 114.871186) + (xy 78.456132 114.813976) + (xy 78.456129 114.813975) + (xy 78.26 114.794659) + (xy 78.06387 114.813975) + (xy 77.875266 114.871188) + (xy 77.701467 114.964086) + (xy 77.696399 114.967473) + (xy 77.695305 114.965836) + (xy 77.639337 114.989596) + (xy 77.570471 114.977795) + (xy 77.553843 114.967109) + (xy 77.553601 114.967473) + (xy 77.548532 114.964086) + (xy 77.374733 114.871188) + (xy 77.374727 114.871186) + (xy 77.186132 114.813976) + (xy 77.186129 114.813975) + (xy 76.99 114.794659) + (xy 76.79387 114.813975) + (xy 76.605266 114.871188) + (xy 76.431467 114.964086) + (xy 76.426399 114.967473) + (xy 76.425305 114.965836) + (xy 76.369337 114.989596) + (xy 76.300471 114.977795) + (xy 76.283843 114.967109) + (xy 76.283601 114.967473) + (xy 76.278532 114.964086) + (xy 76.104733 114.871188) + (xy 76.104727 114.871186) + (xy 75.916132 114.813976) + (xy 75.916129 114.813975) + (xy 75.72 114.794659) + (xy 75.52387 114.813975) + (xy 75.335266 114.871188) + (xy 75.161467 114.964086) + (xy 75.16146 114.96409) + (xy 75.009116 115.089116) + (xy 74.88409 115.24146) + (xy 74.884086 115.241467) + (xy 74.791188 115.415266) + (xy 74.733975 115.60387) + (xy 74.714659 115.8) + (xy 74.733975 115.996129) + (xy 74.791188 116.184733) + (xy 74.884086 116.358532) + (xy 74.88409 116.358539) + (xy 75.009116 116.510883) + (xy 75.16146 116.635909) + (xy 75.161467 116.635913) + (xy 75.335266 116.728811) + (xy 75.335269 116.728811) + (xy 75.335273 116.728814) + (xy 75.523868 116.786024) + (xy 75.72 116.805341) + (xy 75.916132 116.786024) + (xy 76.104727 116.728814) + (xy 76.278538 116.63591) + (xy 76.278544 116.635904) + (xy 76.283607 116.632523) + (xy 76.284703 116.634164) + (xy 76.340639 116.610405) + (xy 76.409507 116.622194) + (xy 76.426148 116.632888) + (xy 76.426393 116.632523) + (xy 76.431458 116.635907) + (xy 76.431462 116.63591) + (xy 76.605273 116.728814) + (xy 76.793868 116.786024) + (xy 76.99 116.805341) + (xy 77.186132 116.786024) + (xy 77.374727 116.728814) + (xy 77.548538 116.63591) + (xy 77.548544 116.635904) + (xy 77.553607 116.632523) + (xy 77.554703 116.634164) + (xy 77.610639 116.610405) + (xy 77.679507 116.622194) + (xy 77.696148 116.632888) + (xy 77.696393 116.632523) + (xy 77.701458 116.635907) + (xy 77.701462 116.63591) + (xy 77.875273 116.728814) + (xy 78.063868 116.786024) + (xy 78.26 116.805341) + (xy 78.456132 116.786024) + (xy 78.644727 116.728814) + (xy 78.818538 116.63591) + (xy 78.818544 116.635904) + (xy 78.823607 116.632523) + (xy 78.824624 116.634045) + (xy 78.881021 116.610084) + (xy 78.94989 116.621866) + (xy 78.966424 116.632489) + (xy 78.966678 116.63211) + (xy 78.971738 116.635491) + (xy 79.145465 116.728349) + (xy 79.28 116.769159) + (xy 79.28 116.048938) + (xy 79.361115 116.112072) + (xy 79.471595 116.15) + (xy 79.559005 116.15) + (xy 79.645216 116.135614) + (xy 79.747947 116.080019) + (xy 79.78 116.0452) + (xy 79.78 116.769159) + (xy 79.914538 116.728348) + (xy 79.992047 116.686919) + (xy 80.06045 116.672677) + (xy 80.125693 116.697677) + (xy 80.167064 116.753982) + (xy 80.1745 116.796277) + (xy 80.1745 119.289818) + (xy 80.154815 119.356857) + (xy 80.102011 119.402612) + (xy 80.032853 119.412556) + (xy 79.985404 119.395357) + (xy 79.895955 119.340186) + (xy 79.894334 119.339186) + (xy 79.727797 119.284001) + (xy 79.727795 119.284) + (xy 79.62501 119.2735) + (xy 78.574998 119.2735) + (xy 78.57498 119.273501) + (xy 78.472203 119.284) + (xy 78.4722 119.284001) + (xy 78.305668 119.339185) + (xy 78.305659 119.339189) + (xy 78.151785 119.434099) + (xy 78.084393 119.452539) + (xy 78.021593 119.434099) + (xy 77.86934 119.340189) + (xy 77.869335 119.340187) + (xy 77.869334 119.340186) + (xy 77.702797 119.285001) + (xy 77.702795 119.285) + (xy 77.600016 119.2745) + (xy 77.600009 119.2745) + (xy 76.991811 119.2745) + (xy 76.924772 119.254815) + (xy 76.879017 119.202011) + (xy 76.869073 119.132853) + (xy 76.87477 119.109545) + (xy 76.885366 119.079262) + (xy 76.885369 119.079249) + (xy 76.905565 118.900003) + (xy 76.905565 118.899996) + (xy 76.885369 118.72075) + (xy 76.885368 118.720745) + (xy 76.877934 118.699499) + (xy 76.825789 118.550478) + (xy 76.805882 118.518797) + (xy 76.751687 118.432546) + (xy 76.729816 118.397738) + (xy 76.602262 118.270184) + (xy 76.449523 118.174211) + (xy 76.279254 118.114631) + (xy 76.279249 118.11463) + (xy 76.100004 118.094435) + (xy 76.099996 118.094435) + (xy 75.92075 118.11463) + (xy 75.920745 118.114631) + (xy 75.750476 118.174211) + (xy 75.597737 118.270184) + (xy 75.470184 118.397737) + (xy 75.37421 118.550478) + (xy 75.31463 118.72075) + (xy 75.309326 118.767825) + (xy 75.282258 118.832239) + (xy 75.273787 118.841621) + (xy 74.902226 119.213181) + (xy 74.840903 119.246666) + (xy 74.814546 119.2495) + (xy 74.574999 119.2495) + (xy 74.57498 119.249501) + (xy 74.472203 119.26) + (xy 74.4722 119.260001) + (xy 74.305668 119.315185) + (xy 74.305663 119.315187) + (xy 74.156342 119.407289) + (xy 74.032289 119.531342) + (xy 73.940187 119.680663) + (xy 73.940185 119.680668) + (xy 73.913205 119.762088) + (xy 73.885001 119.847203) + (xy 73.885001 119.847204) + (xy 73.885 119.847204) + (xy 73.8745 119.949983) + (xy 73.8745 120.550001) + (xy 73.144501 120.550001) + (xy 73.144501 108.003383) + (xy 73.144685 107.996627) + (xy 73.14812 107.933677) + (xy 73.160737 107.702418) + (xy 73.162205 107.689004) + (xy 73.209625 107.401611) + (xy 73.21254 107.388454) + (xy 73.29095 107.107919) + (xy 73.295281 107.095154) + (xy 73.403741 106.824832) + (xy 73.409434 106.812612) + (xy 73.54667 106.555679) + (xy 73.553669 106.544138) + (xy 73.718032 106.30368) + (xy 73.726233 106.292984) + (xy 73.915801 106.071815) + (xy 73.925104 106.062089) + (xy 74.118834 105.880461) + (xy 74.136164 105.866893) + (xy 74.148239 105.859063) + (xy 74.163359 105.842288) + (xy 74.17569 105.830382) + (xy 74.192986 105.815856) + (xy 74.208624 105.793496) + (xy 74.218142 105.781533) + (xy 74.273087 105.720617) + (xy 74.409292 105.521719) + (xy 74.51788 105.306496) + (xy 74.596926 105.078759) + (xy 74.64503 104.842542) + (xy 74.661341 104.60203) + (xy 74.66134 104.60202) + (xy 74.661341 104.602018) + (xy 74.651639 104.454056) + (xy 74.645569 104.361481) + (xy 74.597994 104.125157) + (xy 74.59126 104.105616) + (xy 74.519462 103.897252) + (xy 74.519455 103.897235) + (xy 74.443518 103.745884) + (xy 74.411354 103.681777) + (xy 74.275595 103.482575) + (xy 74.238191 103.440917) + (xy 74.228844 103.429143) + (xy 74.197374 103.384149) + (xy 74.197372 103.384146) + (xy 74.197369 103.384144) + (xy 74.197368 103.384142) + (xy 74.162829 103.35513) + (xy 74.152067 103.344715) + (xy 74.145797 103.339341) + (xy 74.136814 103.332292) + (xy 73.929504 103.137933) + (xy 73.920175 103.128179) + (xy 73.730623 102.907028) + (xy 73.722405 102.896309) + (xy 73.660757 102.80612) + (xy 73.558049 102.655861) + (xy 73.551046 102.644311) + (xy 73.501163 102.55092) + (xy 73.490523 102.531) + (xy 80.166 102.531) + (xy 81.066 102.531) + (xy 81.066 101.506) + (xy 81.566 101.506) + (xy 81.566 102.531) + (xy 82.466 102.531) + (xy 82.466 101.958172) + (xy 82.465999 101.958155) + (xy 82.459598 101.898627) + (xy 82.459596 101.89862) + (xy 82.409354 101.763913) + (xy 82.40935 101.763906) + (xy 82.32319 101.648812) + (xy 82.323187 101.648809) + (xy 82.208093 101.562649) + (xy 82.208086 101.562645) + (xy 82.073379 101.512403) + (xy 82.073372 101.512401) + (xy 82.013844 101.506) + (xy 81.566 101.506) + (xy 81.066 101.506) + (xy 80.618155 101.506) + (xy 80.558627 101.512401) + (xy 80.55862 101.512403) + (xy 80.423913 101.562645) + (xy 80.423906 101.562649) + (xy 80.308812 101.648809) + (xy 80.308809 101.648812) + (xy 80.222649 101.763906) + (xy 80.222645 101.763913) + (xy 80.172403 101.89862) + (xy 80.172401 101.898627) + (xy 80.166 101.958155) + (xy 80.166 102.531) + (xy 73.490523 102.531) + (xy 73.413828 102.387409) + (xy 73.408123 102.375167) + (xy 73.337961 102.200297) + (xy 73.299665 102.104848) + (xy 73.295327 102.092058) + (xy 73.283691 102.050425) + (xy 73.216926 101.81155) + (xy 73.214009 101.798386) + (xy 73.16659 101.510998) + (xy 73.165121 101.497574) + (xy 73.162709 101.453375) + (xy 73.149069 101.203372) + (xy 73.148885 101.196616) + (xy 73.148885 101.134105) + (xy 73.148727 101.133516) + (xy 73.1445 101.101417) + (xy 73.1445 84.899998) + (xy 80.602704 84.899998) + (xy 80.602705 84.9) + (xy 81.5875 84.9) + (xy 81.5875 84.35) + (xy 81.18435 84.35) + (xy 81.14751 84.352899) + (xy 81.147504 84.3529) + (xy 80.989806 84.398716) + (xy 80.989803 84.398717) + (xy 80.848447 84.482314) + (xy 80.848438 84.482321) + (xy 80.732321 84.598438) + (xy 80.732314 84.598447) + (xy 80.648718 84.739801) + (xy 80.602899 84.897513) + (xy 80.602704 84.899998) + (xy 73.1445 84.899998) + (xy 73.1445 68.072) + (xy 74.683474 68.072) + (xy 74.703547 68.327064) + (xy 74.703547 68.327067) + (xy 74.703548 68.32707) + (xy 74.758673 68.55668) + (xy 74.763279 68.575864) + (xy 74.861188 68.812239) + (xy 74.86119 68.812242) + (xy 74.994875 69.030396) + (xy 74.994878 69.030401) + (xy 75.014541 69.053423) + (xy 75.161044 69.224956) + (xy 75.246234 69.297715) + (xy 75.355598 69.391121) + (xy 75.3556 69.391122) + (xy 75.355601 69.391123) + (xy 75.515867 69.489334) + (xy 75.573757 69.524809) + (xy 75.57376 69.524811) + (xy 75.810135 69.62272) + (xy 75.81014 69.622722) + (xy 76.05893 69.682452) + (xy 76.250137 69.6975) + (xy 76.250145 69.6975) + (xy 76.377855 69.6975) + (xy 76.377863 69.6975) + (xy 76.56907 69.682452) + (xy 76.81786 69.622722) + (xy 76.961945 69.56304) + (xy 77.054239 69.524811) + (xy 77.05424 69.52481) + (xy 77.054243 69.524809) + (xy 77.272399 69.391123) + (xy 77.466956 69.224956) + (xy 77.633123 69.030399) + (xy 77.766809 68.812243) + (xy 77.864722 68.57586) + (xy 77.924452 68.32707) + (xy 77.944526 68.072) + (xy 77.924452 67.81693) + (xy 77.864722 67.56814) + (xy 77.846646 67.524501) + (xy 77.766811 67.33176) + (xy 77.766809 67.331757) + (xy 77.759064 67.319119) + (xy 77.633123 67.113601) + (xy 77.633122 67.1136) + (xy 77.633121 67.113598) + (xy 77.573319 67.043579) + (xy 77.466956 66.919044) + (xy 77.360591 66.8282) + (xy 77.272401 66.752878) + (xy 77.272396 66.752875) + (xy 77.054242 66.61919) + (xy 77.054239 66.619188) + (xy 76.817864 66.521279) + (xy 76.729232 66.5) + (xy 76.56907 66.461548) + (xy 76.569068 66.461547) + (xy 76.569065 66.461547) + (xy 76.377868 66.4465) + (xy 76.377863 66.4465) + (xy 76.250137 66.4465) + (xy 76.250131 66.4465) + (xy 76.058934 66.461547) + (xy 75.810135 66.521279) + (xy 75.57376 66.619188) + (xy 75.573757 66.61919) + (xy 75.355603 66.752875) + (xy 75.355598 66.752878) + (xy 75.161044 66.919044) + (xy 74.994878 67.113598) + (xy 74.994875 67.113603) + (xy 74.86119 67.331757) + (xy 74.861188 67.33176) + (xy 74.763279 67.568135) + (xy 74.762351 67.572) + (xy 74.706354 67.805245) + (xy 74.703547 67.816935) + (xy 74.683474 68.072) + (xy 73.1445 68.072) + (xy 73.1445 67.893894) + (xy 73.144501 67.893881) + (xy 73.144501 67.82148) + (xy 73.144696 67.814528) + (xy 73.146832 67.7765) + (xy 73.161726 67.511273) + (xy 73.16328 67.497478) + (xy 73.213573 67.20147) + (xy 73.216667 67.187918) + (xy 73.220628 67.174172) + (xy 73.299786 66.899408) + (xy 73.304378 66.886288) + (xy 73.372428 66.722) + (xy 73.419274 66.608902) + (xy 73.425297 66.596395) + (xy 73.570537 66.333602) + (xy 73.577932 66.321834) + (xy 73.751676 66.076964) + (xy 73.760331 66.06611) + (xy 73.96041 65.842222) + (xy 73.970222 65.83241) + (xy 74.19411 65.632331) + (xy 74.204964 65.623676) + (xy 74.449839 65.449928) + (xy 74.461602 65.442537) + (xy 74.724395 65.297297) + (xy 74.736902 65.291274) + (xy 75.014288 65.176378) + (xy 75.027408 65.171786) + (xy 75.315924 65.088665) + (xy 75.32947 65.085573) + (xy 75.625478 65.03528) + (xy 75.639273 65.033726) + (xy 75.908179 65.018624) + (xy 75.942529 65.016696) + (xy 75.949481 65.016501) + (xy 76.021882 65.016501) + (xy 76.021894 65.0165) + (xy 99.477441 65.0165) + ) + ) + ) + (zone (net 0) (net_name "") (layer "F.Cu") (tstamp 8e912664-5d2b-46ca-bf07-5c8336349637) (hatch edge 0.5) + (connect_pads (clearance 0)) + (min_thickness 0.25) (filled_areas_thickness no) + (keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed)) + (fill (thermal_gap 0.5) (thermal_bridge_width 0.5)) + (polygon + (pts + (xy 95.4 104.9) + (xy 95.4 104.3) + (xy 95.2 104.1) + (xy 77.5 104.1) + (xy 77.3 104.3) + (xy 77.3 104.9) + (xy 77.5 105.1) + (xy 95.2 105.1) + ) + ) + ) + (zone (net 0) (net_name "") (layer "B.Cu") (tstamp 91bc8add-d156-4b23-86c7-2a80bd6a24bc) (hatch edge 0.5) + (connect_pads (clearance 0)) + (min_thickness 0.25) (filled_areas_thickness no) + (keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed)) + (fill (thermal_gap 0.5) (thermal_bridge_width 0.5)) + (polygon + (pts + (xy 95.3 104.1) + (xy 77.6 104.1) + (xy 77.4 104.3) + (xy 77.4 104.9) + (xy 77.6 105.1) + (xy 95.3 105.1) + ) + ) + ) + (zone (net 2) (net_name "GNDD") (layer "B.Cu") (tstamp b1ecbd2c-b070-4c27-bf85-9c3e94aefb66) (hatch edge 0.5) + (priority 1) + (connect_pads (clearance 0.5)) + (min_thickness 0.25) (filled_areas_thickness no) + (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5)) + (polygon + (pts + (xy 72.39 64.262) + (xy 103.124 64.262) + (xy 103.124 129.794) + (xy 72.644 129.794) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 96.919193 106.711663) + (xy 96.928353 106.723217) + (xy 97.005501 106.833396) + (xy 97.005506 106.833402) + (xy 97.172597 107.000493) + (xy 97.172603 107.000498) + (xy 97.358158 107.130425) + (xy 97.401783 107.185002) + (xy 97.408977 107.2545) + (xy 97.377454 107.316855) + (xy 97.358158 107.333575) + (xy 97.172597 107.463505) + (xy 97.005505 107.630597) + (xy 96.869965 107.824169) + (xy 96.869964 107.824171) + (xy 96.783087 108.010479) + (xy 96.771759 108.034774) + (xy 96.770098 108.038335) + (xy 96.770094 108.038344) + (xy 96.708938 108.266586) + (xy 96.708936 108.266596) + (xy 96.688341 108.501999) + (xy 96.688341 108.502) + (xy 96.708936 108.737403) + (xy 96.708938 108.737413) + (xy 96.735856 108.837872) + (xy 96.734193 108.907722) + (xy 96.703762 108.957646) + (xy 96.248227 109.413181) + (xy 96.186904 109.446666) + (xy 96.160546 109.4495) + (xy 94.311227 109.4495) + (xy 94.244188 109.429815) + (xy 94.198433 109.377011) + (xy 94.188489 109.307853) + (xy 94.217514 109.244297) + (xy 94.223523 109.237842) + (xy 96.585638 106.875727) + (xy 96.599267 106.86395) + (xy 96.61853 106.84961) + (xy 96.642811 106.820673) + (xy 96.650366 106.811669) + (xy 96.657683 106.803684) + (xy 96.658993 106.802372) + (xy 96.66159 106.799777) + (xy 96.680811 106.775467) + (xy 96.683053 106.772712) + (xy 96.731302 106.715214) + (xy 96.731302 106.715212) + (xy 96.73179 106.714632) + (xy 96.789963 106.675931) + (xy 96.859824 106.674824) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 83.415473 76.383227) + (xy 83.470475 76.417788) + (xy 83.640745 76.477368) + (xy 83.64075 76.477369) + (xy 83.819996 76.497565) + (xy 83.82 76.497565) + (xy 83.820001 76.497565) + (xy 83.827741 76.496692) + (xy 83.844218 76.494836) + (xy 83.91304 76.50689) + (xy 83.945784 76.530375) + (xy 86.038181 78.622771) + (xy 86.071666 78.684094) + (xy 86.0745 78.710452) + (xy 86.0745 81.667255) + (xy 86.072775 81.682872) + (xy 86.073061 81.682899) + (xy 86.072326 81.690665) + (xy 86.074439 81.757872) + (xy 86.0745 81.761767) + (xy 86.0745 81.789357) + (xy 86.075003 81.793335) + (xy 86.075918 81.804967) + (xy 86.07729 81.848624) + (xy 86.077291 81.848627) + (xy 86.08288 81.867867) + (xy 86.086824 81.886911) + (xy 86.089336 81.906792) + (xy 86.105414 81.947403) + (xy 86.109197 81.958452) + (xy 86.11694 81.985103) + (xy 86.121382 82.00039) + (xy 86.123358 82.003732) + (xy 86.13158 82.017634) + (xy 86.140136 82.0351) + (xy 86.14692 82.052231) + (xy 86.147514 82.053732) + (xy 86.173181 82.08906) + (xy 86.179593 82.098821) + (xy 86.201828 82.136417) + (xy 86.201833 82.136424) + (xy 86.21599 82.15058) + (xy 86.228627 82.165375) + (xy 86.240406 82.181587) + (xy 86.272474 82.208116) + (xy 86.274057 82.209425) + (xy 86.282698 82.217288) + (xy 87.049194 82.983784) + (xy 87.059019 82.996048) + (xy 87.05924 82.995866) + (xy 87.06421 83.001874) + (xy 87.113239 83.047915) + (xy 87.116036 83.050626) + (xy 87.13553 83.07012) + (xy 87.138695 83.072575) + (xy 87.147571 83.080156) + (xy 87.179418 83.110062) + (xy 87.179422 83.110064) + (xy 87.196973 83.119713) + (xy 87.213231 83.130392) + (xy 87.229064 83.142674) + (xy 87.26441 83.157968) + (xy 87.269155 83.160022) + (xy 87.279635 83.165155) + (xy 87.317908 83.186197) + (xy 87.337312 83.191179) + (xy 87.35571 83.197478) + (xy 87.374105 83.205438) + (xy 87.417254 83.212271) + (xy 87.42868 83.214638) + (xy 87.470981 83.2255) + (xy 87.491016 83.2255) + (xy 87.510413 83.227026) + (xy 87.530196 83.23016) + (xy 87.573675 83.22605) + (xy 87.585344 83.2255) + (xy 88.786242 83.2255) + (xy 88.853281 83.245185) + (xy 88.899035 83.297986) + (xy 88.9124 83.327253) + (xy 88.915095 83.333153) + (xy 88.915105 83.333171) + (xy 88.992896 83.454216) + (xy 88.992899 83.45422) + (xy 88.992903 83.454226) + (xy 88.992908 83.454231) + (xy 88.992912 83.454237) + (xy 89.087041 83.562869) + (xy 89.087057 83.562887) + (xy 89.08706 83.56289) + (xy 89.19583 83.657139) + (xy 89.248947 83.691275) + (xy 89.316778 83.734868) + (xy 89.31678 83.734868) + (xy 89.316784 83.734871) + (xy 89.4477 83.794658) + (xy 89.585655 83.835165) + (xy 89.728111 83.855647) + (xy 89.728114 83.855647) + (xy 90.35 83.855647) + (xy 90.421961 83.8505) + (xy 90.434013 83.84696) + (xy 90.484551 83.845607) + (xy 90.484804 83.843262) + (xy 90.501387 83.845044) + (xy 90.552127 83.8505) + (xy 91.647872 83.850499) + (xy 91.707483 83.844091) + (xy 91.707494 83.844086) + (xy 91.708094 83.843946) + (xy 91.709342 83.84389) + (xy 91.715195 83.843261) + (xy 91.715234 83.843626) + (xy 91.754262 83.841882) + (xy 91.85 83.855647) + (xy 91.850003 83.855647) + (xy 92.112913 83.855647) + (xy 92.179952 83.875332) + (xy 92.225707 83.928136) + (xy 92.235651 83.997294) + (xy 92.206626 84.06085) + (xy 92.200594 84.067328) + (xy 92.070184 84.197737) + (xy 91.974211 84.350476) + (xy 91.914631 84.520745) + (xy 91.91463 84.52075) + (xy 91.894435 84.699996) + (xy 91.894435 84.700003) + (xy 91.91463 84.879249) + (xy 91.914631 84.879254) + (xy 91.974211 85.049523) + (xy 92.049892 85.169967) + (xy 92.070184 85.202262) + (xy 92.197738 85.329816) + (xy 92.221117 85.344506) + (xy 92.319932 85.406596) + (xy 92.350478 85.425789) + (xy 92.520745 85.485368) + (xy 92.52075 85.485369) + (xy 92.699996 85.505565) + (xy 92.7 85.505565) + (xy 92.700004 85.505565) + (xy 92.879249 85.485369) + (xy 92.879252 85.485368) + (xy 92.879255 85.485368) + (xy 93.049522 85.425789) + (xy 93.178883 85.344505) + (xy 93.244855 85.3255) + (xy 93.717257 85.3255) + (xy 93.732877 85.327224) + (xy 93.732904 85.326939) + (xy 93.74066 85.327671) + (xy 93.740667 85.327673) + (xy 93.807873 85.325561) + (xy 93.811768 85.3255) + (xy 93.839346 85.3255) + (xy 93.83935 85.3255) + (xy 93.843324 85.324997) + (xy 93.854963 85.32408) + (xy 93.898627 85.322709) + (xy 93.917869 85.317117) + (xy 93.936912 85.313174) + (xy 93.956792 85.310664) + (xy 93.997401 85.294585) + (xy 94.008444 85.290803) + (xy 94.05039 85.278618) + (xy 94.067629 85.268422) + (xy 94.085103 85.259862) + (xy 94.103727 85.252488) + (xy 94.103727 85.252487) + (xy 94.103732 85.252486) + (xy 94.139083 85.2268) + (xy 94.148814 85.220408) + (xy 94.18642 85.19817) + (xy 94.200589 85.183999) + (xy 94.215379 85.171368) + (xy 94.231587 85.159594) + (xy 94.259438 85.125926) + (xy 94.267279 85.117309) + (xy 94.783787 84.600802) + (xy 94.796042 84.590986) + (xy 94.795859 84.590764) + (xy 94.801868 84.585791) + (xy 94.801877 84.585786) + (xy 94.847949 84.536722) + (xy 94.850566 84.534023) + (xy 94.87012 84.514471) + (xy 94.872576 84.511303) + (xy 94.880156 84.502427) + (xy 94.910062 84.470582) + (xy 94.919713 84.453024) + (xy 94.930396 84.436761) + (xy 94.942673 84.420936) + (xy 94.960021 84.380844) + (xy 94.965151 84.370371) + (xy 94.986197 84.332092) + (xy 94.99118 84.31268) + (xy 94.997481 84.29428) + (xy 95.005437 84.275896) + (xy 95.01227 84.232748) + (xy 95.014633 84.221338) + (xy 95.0255 84.179019) + (xy 95.0255 84.158983) + (xy 95.027027 84.139582) + (xy 95.03016 84.119804) + (xy 95.02605 84.076324) + (xy 95.0255 84.064655) + (xy 95.0255 82.082742) + (xy 95.027224 82.067122) + (xy 95.026939 82.067096) + (xy 95.027671 82.05934) + (xy 95.027673 82.059333) + (xy 95.025561 81.992126) + (xy 95.0255 81.988231) + (xy 95.0255 81.960654) + (xy 95.0255 81.96065) + (xy 95.024996 81.956665) + (xy 95.02408 81.945021) + (xy 95.02373 81.933879) + (xy 95.022709 81.901373) + (xy 95.017122 81.882144) + (xy 95.013174 81.863084) + (xy 95.010664 81.843208) + (xy 95.010663 81.843206) + (xy 95.010663 81.843204) + (xy 94.994588 81.802604) + (xy 94.990804 81.791552) + (xy 94.978618 81.749609) + (xy 94.978616 81.749606) + (xy 94.968423 81.732371) + (xy 94.959861 81.714894) + (xy 94.952487 81.696269) + (xy 94.941353 81.680945) + (xy 94.926811 81.66093) + (xy 94.920405 81.651177) + (xy 94.904971 81.62508) + (xy 94.898172 81.613583) + (xy 94.898165 81.613574) + (xy 94.884006 81.599415) + (xy 94.871368 81.584619) + (xy 94.865245 81.576191) + (xy 94.859594 81.568413) + (xy 94.858958 81.567887) + (xy 94.82594 81.540572) + (xy 94.817299 81.532709) + (xy 93.18148 79.896889) + (xy 93.147995 79.835566) + (xy 93.152979 79.765874) + (xy 93.164846 79.742169) + (xy 93.234897 79.633166) + (xy 93.234897 79.633165) + (xy 93.234904 79.633155) + (xy 93.234907 79.633147) + (xy 93.23491 79.633143) + (xy 93.284215 79.52518) + (xy 93.294632 79.50237) + (xy 93.294632 79.502369) + (xy 93.294999 79.501566) + (xy 93.29587 79.498149) + (xy 93.33518 79.364277) + (xy 93.344742 79.297771) + (xy 93.373767 79.234216) + (xy 93.432544 79.196441) + (xy 93.481363 79.192198) + (xy 93.488384 79.192989) + (xy 93.599997 79.205565) + (xy 93.6 79.205565) + (xy 93.600004 79.205565) + (xy 93.779249 79.185369) + (xy 93.779252 79.185368) + (xy 93.779255 79.185368) + (xy 93.949522 79.125789) + (xy 94.102262 79.029816) + (xy 94.229816 78.902262) + (xy 94.245006 78.878087) + (xy 94.297337 78.831797) + (xy 94.366391 78.821147) + (xy 94.43024 78.849521) + (xy 94.45499 78.878083) + (xy 94.470181 78.902258) + (xy 94.470184 78.902262) + (xy 94.597738 79.029816) + (xy 94.646568 79.060498) + (xy 94.732091 79.114236) + (xy 94.750478 79.125789) + (xy 94.878386 79.170546) + (xy 94.920745 79.185368) + (xy 94.92075 79.185369) + (xy 95.099996 79.205565) + (xy 95.1 79.205565) + (xy 95.100003 79.205565) + (xy 95.211616 79.192989) + (xy 95.280438 79.205043) + (xy 95.331818 79.252392) + (xy 95.3495 79.316209) + (xy 95.3495 93.73777) + (xy 95.329815 93.804809) + (xy 95.313181 93.825451) + (xy 92.825451 96.313181) + (xy 92.764128 96.346666) + (xy 92.73777 96.3495) + (xy 82.32223 96.3495) + (xy 82.255191 96.329815) + (xy 82.234549 96.313181) + (xy 78.036818 92.11545) + (xy 78.003333 92.054127) + (xy 78.000499 92.027769) + (xy 78.000499 90.592129) + (xy 78.000498 90.592123) + (xy 77.994091 90.532516) + (xy 77.943797 90.397671) + (xy 77.943793 90.397664) + (xy 77.857547 90.282455) + (xy 77.857544 90.282452) + (xy 77.742332 90.196204) + (xy 77.737635 90.193639) + (xy 77.688232 90.144232) + (xy 77.673382 90.075958) + (xy 77.693257 90.016989) + (xy 77.824173 89.816607) + (xy 77.924063 89.588881) + (xy 77.985108 89.347821) + (xy 77.99505 89.227837) + (xy 78.005643 89.100005) + (xy 78.005643 89.099994) + (xy 77.985109 88.852187) + (xy 77.985107 88.852175) + (xy 77.924063 88.611118) + (xy 77.824173 88.383393) + (xy 77.688166 88.175217) + (xy 77.666557 88.151744) + (xy 77.519744 87.992262) + (xy 77.323509 87.839526) + (xy 77.323507 87.839525) + (xy 77.323506 87.839524) + (xy 77.104811 87.721172) + (xy 77.104802 87.721169) + (xy 76.869616 87.640429) + (xy 76.624335 87.5995) + (xy 76.375665 87.5995) + (xy 76.130383 87.640429) + (xy 75.895197 87.721169) + (xy 75.895188 87.721172) + (xy 75.676493 87.839524) + (xy 75.500662 87.976379) + (xy 75.435668 88.002021) + (xy 75.367128 87.988454) + (xy 75.316803 87.939986) + (xy 75.3005 87.878525) + (xy 75.3005 82.368228) + (xy 75.320185 82.301189) + (xy 75.336814 82.280552) + (xy 78.281498 79.335867) + (xy 78.342819 79.302384) + (xy 78.379983 79.300022) + (xy 78.522861 79.312522) + (xy 78.592999 79.318659) + (xy 78.593 79.318659) + (xy 78.593001 79.318659) + (xy 78.632234 79.315226) + (xy 78.828408 79.298063) + (xy 79.056663 79.236903) + (xy 79.27083 79.137035) + (xy 79.464401 79.001495) + (xy 79.631495 78.834401) + (xy 79.767035 78.64083) + (xy 79.866903 78.426663) + (xy 79.928063 78.198408) + (xy 79.948659 77.963) + (xy 79.928063 77.727592) + (xy 79.882759 77.558513) + (xy 79.865502 77.494107) + (xy 79.866722 77.49378) + (xy 79.862681 77.430182) + (xy 79.89665 77.369127) + (xy 79.958237 77.336129) + (xy 79.983634 77.3335) + (xy 80.710639 77.3335) + (xy 80.777678 77.353185) + (xy 80.823433 77.405989) + (xy 80.827681 77.416546) + (xy 80.87421 77.549521) + (xy 80.910333 77.60701) + (xy 80.970184 77.702262) + (xy 81.097738 77.829816) + (xy 81.18808 77.886582) + (xy 81.225499 77.910094) + (xy 81.250478 77.925789) + (xy 81.384745 77.972771) + (xy 81.420745 77.985368) + (xy 81.42075 77.985369) + (xy 81.599996 78.005565) + (xy 81.6 78.005565) + (xy 81.600002 78.005565) + (xy 81.656225 77.99923) + (xy 81.725047 78.011284) + (xy 81.776426 78.058633) + (xy 81.794051 78.126243) + (xy 81.772325 78.192649) + (xy 81.757791 78.21013) + (xy 81.720184 78.247737) + (xy 81.624211 78.400476) + (xy 81.564631 78.570745) + (xy 81.56463 78.57075) + (xy 81.544435 78.749996) + (xy 81.544435 78.750003) + (xy 81.56463 78.929249) + (xy 81.564631 78.929254) + (xy 81.624211 79.099524) + (xy 81.705493 79.228881) + (xy 81.7245 79.294854) + (xy 81.7245 81.617255) + (xy 81.722775 81.632872) + (xy 81.723061 81.632899) + (xy 81.722326 81.640665) + (xy 81.724439 81.707872) + (xy 81.7245 81.711767) + (xy 81.7245 81.739357) + (xy 81.725003 81.743335) + (xy 81.725918 81.754967) + (xy 81.72729 81.798624) + (xy 81.727291 81.798627) + (xy 81.73288 81.817867) + (xy 81.736824 81.836911) + (xy 81.739085 81.854805) + (xy 81.739336 81.856792) + (xy 81.755414 81.897403) + (xy 81.759197 81.908452) + (xy 81.766496 81.933575) + (xy 81.771382 81.95039) + (xy 81.777449 81.96065) + (xy 81.78158 81.967634) + (xy 81.790136 81.9851) + (xy 81.79215 81.990185) + (xy 81.797514 82.003732) + (xy 81.823181 82.03906) + (xy 81.829593 82.048821) + (xy 81.851828 82.086417) + (xy 81.851833 82.086424) + (xy 81.86599 82.10058) + (xy 81.878627 82.115375) + (xy 81.890406 82.131587) + (xy 81.92171 82.157484) + (xy 81.924057 82.159425) + (xy 81.932698 82.167288) + (xy 83.456685 83.691275) + (xy 83.49017 83.752598) + (xy 83.485186 83.82229) + (xy 83.443314 83.878223) + (xy 83.434977 83.883949) + (xy 83.29774 83.970182) + (xy 83.297737 83.970184) + (xy 83.170184 84.097737) + (xy 83.074211 84.250476) + (xy 83.014631 84.420745) + (xy 83.01463 84.42075) + (xy 82.994435 84.599996) + (xy 82.994435 84.600003) + (xy 83.01463 84.779249) + (xy 83.014631 84.779254) + (xy 83.074211 84.949524) + (xy 83.155493 85.078881) + (xy 83.1745 85.144854) + (xy 83.1745 91.367255) + (xy 83.172775 91.382872) + (xy 83.173061 91.382899) + (xy 83.172326 91.390665) + (xy 83.174439 91.457872) + (xy 83.1745 91.461767) + (xy 83.1745 91.489357) + (xy 83.175003 91.493335) + (xy 83.175918 91.504967) + (xy 83.17729 91.548624) + (xy 83.177291 91.548627) + (xy 83.18288 91.567867) + (xy 83.186824 91.586911) + (xy 83.187645 91.593402) + (xy 83.189336 91.606792) + (xy 83.205414 91.647403) + (xy 83.209197 91.658452) + (xy 83.221381 91.700388) + (xy 83.23158 91.717634) + (xy 83.240138 91.735103) + (xy 83.247514 91.753732) + (xy 83.273181 91.78906) + (xy 83.279593 91.798821) + (xy 83.301828 91.836417) + (xy 83.301833 91.836424) + (xy 83.31599 91.85058) + (xy 83.328627 91.865375) + (xy 83.340406 91.881587) + (xy 83.351089 91.890425) + (xy 83.374057 91.909425) + (xy 83.382698 91.917288) + (xy 85.023787 93.558378) + (xy 85.057272 93.619701) + (xy 85.059326 93.632174) + (xy 85.06463 93.679249) + (xy 85.12421 93.849521) + (xy 85.190842 93.955565) + (xy 85.220184 94.002262) + (xy 85.347738 94.129816) + (xy 85.500478 94.225789) + (xy 85.648997 94.277758) + (xy 85.670745 94.285368) + (xy 85.67075 94.285369) + (xy 85.849996 94.305565) + (xy 85.85 94.305565) + (xy 85.850004 94.305565) + (xy 86.029249 94.285369) + (xy 86.029252 94.285368) + (xy 86.029255 94.285368) + (xy 86.199522 94.225789) + (xy 86.352262 94.129816) + (xy 86.479816 94.002262) + (xy 86.575789 93.849522) + (xy 86.635368 93.679255) + (xy 86.635369 93.679249) + (xy 86.655565 93.500003) + (xy 86.655565 93.499996) + (xy 86.635369 93.32075) + (xy 86.635368 93.320745) + (xy 86.575788 93.150476) + (xy 86.536582 93.08808) + (xy 86.479816 92.997738) + (xy 86.352262 92.870184) + (xy 86.241326 92.800478) + (xy 86.199521 92.77421) + (xy 86.029249 92.71463) + (xy 85.982173 92.709326) + (xy 85.917759 92.682259) + (xy 85.908377 92.673787) + (xy 84.461819 91.227228) + (xy 84.428334 91.165905) + (xy 84.4255 91.139547) + (xy 84.4255 89.562996) + (xy 84.445185 89.495957) + (xy 84.497989 89.450202) + (xy 84.567147 89.440258) + (xy 84.628539 89.467451) + (xy 84.649057 89.484425) + (xy 84.657698 89.492288) + (xy 88.373787 93.208378) + (xy 88.407272 93.269701) + (xy 88.409326 93.282174) + (xy 88.41463 93.329249) + (xy 88.47421 93.499521) + (xy 88.557562 93.632174) + (xy 88.570184 93.652262) + (xy 88.697738 93.779816) + (xy 88.850478 93.875789) + (xy 88.931721 93.904217) + (xy 89.020745 93.935368) + (xy 89.02075 93.935369) + (xy 89.199996 93.955565) + (xy 89.2 93.955565) + (xy 89.200004 93.955565) + (xy 89.379249 93.935369) + (xy 89.379252 93.935368) + (xy 89.379255 93.935368) + (xy 89.549522 93.875789) + (xy 89.702262 93.779816) + (xy 89.829816 93.652262) + (xy 89.925789 93.499522) + (xy 89.985368 93.329255) + (xy 89.985369 93.329249) + (xy 90.005565 93.150003) + (xy 90.005565 93.149996) + (xy 89.985369 92.97075) + (xy 89.985368 92.970745) + (xy 89.925788 92.800476) + (xy 89.851507 92.682259) + (xy 89.829816 92.647738) + (xy 89.702262 92.520184) + (xy 89.549521 92.42421) + (xy 89.379249 92.36463) + (xy 89.332173 92.359326) + (xy 89.267759 92.332259) + (xy 89.258377 92.323787) + (xy 85.736819 88.802228) + (xy 85.703334 88.740905) + (xy 85.7005 88.714547) + (xy 85.7005 84.507742) + (xy 85.702224 84.492122) + (xy 85.701939 84.492096) + (xy 85.702671 84.48434) + (xy 85.702673 84.484333) + (xy 85.700561 84.417126) + (xy 85.7005 84.413231) + (xy 85.7005 84.385654) + (xy 85.7005 84.38565) + (xy 85.699996 84.381665) + (xy 85.69908 84.370021) + (xy 85.698466 84.350476) + (xy 85.697709 84.326373) + (xy 85.692122 84.307144) + (xy 85.688174 84.288084) + (xy 85.685664 84.268208) + (xy 85.685663 84.268206) + (xy 85.685663 84.268204) + (xy 85.669588 84.227604) + (xy 85.665804 84.216552) + (xy 85.653618 84.174609) + (xy 85.653616 84.174606) + (xy 85.643423 84.157371) + (xy 85.634861 84.139894) + (xy 85.627487 84.121269) + (xy 85.61039 84.097738) + (xy 85.601811 84.08593) + (xy 85.595405 84.076177) + (xy 85.57317 84.03858) + (xy 85.573168 84.038578) + (xy 85.573165 84.038574) + (xy 85.559006 84.024415) + (xy 85.546368 84.009619) + (xy 85.534594 83.993413) + (xy 85.510403 83.973401) + (xy 85.50094 83.965572) + (xy 85.492299 83.957709) + (xy 83.011819 81.477228) + (xy 82.978334 81.415905) + (xy 82.9755 81.389547) + (xy 82.9755 79.294854) + (xy 82.994507 79.228881) + (xy 83.075788 79.099524) + (xy 83.089445 79.060495) + (xy 83.135368 78.929255) + (xy 83.147226 78.824004) + (xy 83.156637 78.788663) + (xy 83.160025 78.780834) + (xy 83.165152 78.770371) + (xy 83.186197 78.732092) + (xy 83.19118 78.71268) + (xy 83.197481 78.69428) + (xy 83.205437 78.675896) + (xy 83.21227 78.632748) + (xy 83.214633 78.621338) + (xy 83.2255 78.579019) + (xy 83.2255 78.558983) + (xy 83.227027 78.539582) + (xy 83.23016 78.519804) + (xy 83.22605 78.476324) + (xy 83.2255 78.464655) + (xy 83.2255 76.48822) + (xy 83.245185 76.421181) + (xy 83.297989 76.375426) + (xy 83.367147 76.365482) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 86.457194 75.809075) + (xy 86.507597 75.857462) + (xy 86.517041 75.87814) + (xy 86.520024 75.886664) + (xy 86.574211 76.041523) + (xy 86.633178 76.135367) + (xy 86.670184 76.194262) + (xy 86.797738 76.321816) + (xy 86.811893 76.33071) + (xy 86.948149 76.416326) + (xy 86.950478 76.417789) + (xy 86.998084 76.434447) + (xy 87.120745 76.477368) + (xy 87.12075 76.477369) + (xy 87.299996 76.497565) + (xy 87.306964 76.497565) + (xy 87.306964 76.499576) + (xy 87.36607 76.509924) + (xy 87.398822 76.533413) + (xy 88.838181 77.972771) + (xy 88.871666 78.034094) + (xy 88.8745 78.060452) + (xy 88.8745 78.119278) + (xy 88.863294 78.170789) + (xy 88.804998 78.298438) + (xy 88.80412 78.30188) + (xy 88.764821 78.435717) + (xy 88.764818 78.435727) + (xy 88.744358 78.578038) + (xy 88.744358 78.634397) + (xy 88.744353 78.634414) + (xy 88.744353 79.165556) + (xy 88.744358 79.165603) + (xy 88.744358 79.221962) + (xy 88.763558 79.355499) + (xy 88.763558 79.355502) + (xy 88.764819 79.364276) + (xy 88.805367 79.502368) + (xy 88.805372 79.502381) + (xy 88.865089 79.633143) + (xy 88.865102 79.633166) + (xy 88.942896 79.754216) + (xy 88.942899 79.75422) + (xy 88.942903 79.754226) + (xy 88.942908 79.754231) + (xy 88.942912 79.754237) + (xy 89.037041 79.862869) + (xy 89.037057 79.862887) + (xy 89.03706 79.86289) + (xy 89.14583 79.957139) + (xy 89.227052 80.009336) + (xy 89.27051 80.037266) + (xy 89.269829 80.038325) + (xy 89.315288 80.083786) + (xy 89.330139 80.152059) + (xy 89.305721 80.217523) + (xy 89.294136 80.230892) + (xy 88.586848 80.938181) + (xy 88.525525 80.971666) + (xy 88.499167 80.9745) + (xy 88.294855 80.9745) + (xy 88.228883 80.955494) + (xy 88.099523 80.874211) + (xy 87.929254 80.814631) + (xy 87.929249 80.81463) + (xy 87.750004 80.794435) + (xy 87.749996 80.794435) + (xy 87.57075 80.81463) + (xy 87.570742 80.814632) + (xy 87.490454 80.842726) + (xy 87.420675 80.846287) + (xy 87.360048 80.811558) + (xy 87.327821 80.749564) + (xy 87.3255 80.725684) + (xy 87.3255 78.482737) + (xy 87.327224 78.467123) + (xy 87.326938 78.467096) + (xy 87.327672 78.459333) + (xy 87.325561 78.392144) + (xy 87.3255 78.38825) + (xy 87.3255 78.360651) + (xy 87.3255 78.36065) + (xy 87.324997 78.35667) + (xy 87.32408 78.345021) + (xy 87.322709 78.301373) + (xy 87.317121 78.282139) + (xy 87.313174 78.263081) + (xy 87.310664 78.243208) + (xy 87.310663 78.243205) + (xy 87.294583 78.202592) + (xy 87.290799 78.191539) + (xy 87.282872 78.164257) + (xy 87.278617 78.14961) + (xy 87.26842 78.132368) + (xy 87.259863 78.114902) + (xy 87.252486 78.096268) + (xy 87.226809 78.060926) + (xy 87.220412 78.05119) + (xy 87.19817 78.013579) + (xy 87.198167 78.013576) + (xy 87.198165 78.013573) + (xy 87.184005 77.999413) + (xy 87.17137 77.98462) + (xy 87.159593 77.968412) + (xy 87.125945 77.940576) + (xy 87.117304 77.932713) + (xy 85.805986 76.621395) + (xy 85.772501 76.560072) + (xy 85.777485 76.49038) + (xy 85.819357 76.434447) + (xy 85.843594 76.421534) + (xy 85.843247 76.420812) + (xy 85.849516 76.417792) + (xy 85.849519 76.417789) + (xy 85.849522 76.417789) + (xy 86.002262 76.321816) + (xy 86.129816 76.194262) + (xy 86.225789 76.041522) + (xy 86.282958 75.878141) + (xy 86.32368 75.821366) + (xy 86.388633 75.795619) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 99.477445 65.016501) + (xy 99.502108 65.016501) + (xy 99.564519 65.016501) + (xy 99.571471 65.016696) + (xy 99.608993 65.018803) + (xy 99.874724 65.033726) + (xy 99.888523 65.03528) + (xy 100.184524 65.085573) + (xy 100.198081 65.088667) + (xy 100.486587 65.171785) + (xy 100.499711 65.176378) + (xy 100.777089 65.291271) + (xy 100.789611 65.2973) + (xy 100.993869 65.41019) + (xy 101.052391 65.442534) + (xy 101.064165 65.449932) + (xy 101.309025 65.623669) + (xy 101.319897 65.632339) + (xy 101.543766 65.8324) + (xy 101.553599 65.842233) + (xy 101.75366 66.066102) + (xy 101.76233 66.076974) + (xy 101.936067 66.321834) + (xy 101.943465 66.333608) + (xy 102.088695 66.596381) + (xy 102.094728 66.60891) + (xy 102.209621 66.886288) + (xy 102.214214 66.899412) + (xy 102.297332 67.187918) + (xy 102.300426 67.201475) + (xy 102.350717 67.497465) + (xy 102.352274 67.511283) + (xy 102.369304 67.814527) + (xy 102.369499 67.82148) + (xy 102.369499 103.57026) + (xy 102.3671 103.594534) + (xy 102.366284 103.598617) + (xy 102.366284 103.59862) + (xy 102.369239 103.644206) + (xy 102.369499 103.652219) + (xy 102.3695 103.672226) + (xy 102.369384 103.672226) + (xy 102.369431 103.682309) + (xy 102.367393 103.715073) + (xy 102.361501 103.745884) + (xy 102.350637 103.779137) + (xy 102.337201 103.807484) + (xy 102.318337 103.836951) + (xy 102.29821 103.861026) + (xy 102.292253 103.866549) + (xy 102.281372 103.875542) + (xy 102.183048 103.94779) + (xy 102.062484 104.0755) + (xy 101.98846 104.189672) + (xy 101.96465 104.210136) + (xy 101.963883 104.229464) + (xy 101.960894 104.237418) + (xy 101.899555 104.38504) + (xy 101.862532 104.556728) + (xy 101.857092 104.732256) + (xy 101.857093 104.732263) + (xy 101.857093 104.732266) + (xy 101.866386 104.793575) + (xy 101.883413 104.905911) + (xy 101.940627 105.071948) + (xy 101.940628 105.071949) + (xy 101.94063 105.071954) + (xy 102.026865 105.224951) + (xy 102.139289 105.359878) + (xy 102.139293 105.359881) + (xy 102.160749 105.377795) + (xy 102.173608 105.39021) + (xy 102.197242 105.416574) + (xy 102.197245 105.416577) + (xy 102.237078 105.442569) + (xy 102.248693 105.451152) + (xy 102.258181 105.459058) + (xy 102.271058 105.468575) + (xy 102.291694 105.486286) + (xy 102.313323 105.510434) + (xy 102.333288 105.539658) + (xy 102.34792 105.568589) + (xy 102.359626 105.601986) + (xy 102.366258 105.633718) + (xy 102.368956 105.669647) + (xy 102.369304 105.678932) + (xy 102.369304 105.69587) + (xy 102.369108 105.702832) + (xy 102.366393 105.7511) + (xy 102.366693 105.752537) + (xy 102.369304 105.777851) + (xy 102.369499 126.22145) + (xy 102.369499 126.234519) + (xy 102.369304 126.241472) + (xy 102.352274 126.544716) + (xy 102.350717 126.558534) + (xy 102.300426 126.854524) + (xy 102.297332 126.868081) + (xy 102.214214 127.156587) + (xy 102.209621 127.169711) + (xy 102.094728 127.447089) + (xy 102.088695 127.459618) + (xy 101.943465 127.722391) + (xy 101.936067 127.734165) + (xy 101.76233 127.979025) + (xy 101.75366 127.989897) + (xy 101.553599 128.213766) + (xy 101.543766 128.223599) + (xy 101.319897 128.42366) + (xy 101.309025 128.43233) + (xy 101.064165 128.606067) + (xy 101.052391 128.613465) + (xy 100.789618 128.758695) + (xy 100.777089 128.764728) + (xy 100.499711 128.879621) + (xy 100.486587 128.884214) + (xy 100.198081 128.967332) + (xy 100.184524 128.970426) + (xy 99.888534 129.020717) + (xy 99.874716 129.022274) + (xy 99.571472 129.039304) + (xy 99.564519 129.039499) + (xy 75.949481 129.039499) + (xy 75.942528 129.039304) + (xy 75.639283 129.022274) + (xy 75.625465 129.020717) + (xy 75.329475 128.970426) + (xy 75.315918 128.967332) + (xy 75.027412 128.884214) + (xy 75.014288 128.879621) + (xy 74.73691 128.764728) + (xy 74.724381 128.758695) + (xy 74.461608 128.613465) + (xy 74.449834 128.606067) + (xy 74.204974 128.43233) + (xy 74.194102 128.42366) + (xy 73.970233 128.223599) + (xy 73.9604 128.213766) + (xy 73.760339 127.989897) + (xy 73.751669 127.979025) + (xy 73.577932 127.734165) + (xy 73.570534 127.722391) + (xy 73.447899 127.5005) + (xy 73.4253 127.459611) + (xy 73.419271 127.447089) + (xy 73.417907 127.443797) + (xy 73.38218 127.357544) + (xy 73.304378 127.169711) + (xy 73.299785 127.156587) + (xy 73.216667 126.868081) + (xy 73.213573 126.854524) + (xy 73.206389 126.812242) + (xy 73.16328 126.558523) + (xy 73.161726 126.544724) + (xy 73.144696 126.241471) + (xy 73.144501 126.234519) + (xy 73.144501 126.072) + (xy 74.683474 126.072) + (xy 74.703547 126.327064) + (xy 74.703547 126.327067) + (xy 74.703548 126.32707) + (xy 74.755801 126.544715) + (xy 74.763279 126.575864) + (xy 74.861188 126.812239) + (xy 74.86119 126.812242) + (xy 74.994875 127.030396) + (xy 74.994878 127.030401) + (xy 75.010379 127.04855) + (xy 75.161044 127.224956) + (xy 75.285579 127.331319) + (xy 75.355598 127.391121) + (xy 75.3556 127.391122) + (xy 75.355601 127.391123) + (xy 75.457432 127.453525) + (xy 75.573757 127.524809) + (xy 75.57376 127.524811) + (xy 75.810135 127.62272) + (xy 75.81014 127.622722) + (xy 76.05893 127.682452) + (xy 76.250137 127.6975) + (xy 76.250145 127.6975) + (xy 76.377855 127.6975) + (xy 76.377863 127.6975) + (xy 76.56907 127.682452) + (xy 76.766719 127.635) + (xy 82.764417 127.635) + (xy 82.784699 127.840932) + (xy 82.7847 127.840934) + (xy 82.844768 128.038954) + (xy 82.942315 128.22145) + (xy 82.942317 128.221452) + (xy 83.073589 128.38141) + (xy 83.170209 128.460702) + (xy 83.23355 128.512685) + (xy 83.416046 128.610232) + (xy 83.614066 128.6703) + (xy 83.614065 128.6703) + (xy 83.652647 128.6741) + (xy 83.768392 128.6855) + (xy 83.768395 128.6855) + (xy 83.871605 128.6855) + (xy 83.871608 128.6855) + (xy 84.025934 128.6703) + (xy 84.223954 128.610232) + (xy 84.40645 128.512685) + (xy 84.56641 128.38141) + (xy 84.697685 128.22145) + (xy 84.795232 128.038954) + (xy 84.8553 127.840934) + (xy 84.875583 127.635) + (xy 84.8553 127.429066) + (xy 84.795232 127.231046) + (xy 84.697685 127.04855) + (xy 84.645702 126.985209) + (xy 84.56641 126.888589) + (xy 84.406452 126.757317) + (xy 84.406453 126.757317) + (xy 84.40645 126.757315) + (xy 84.223954 126.659768) + (xy 84.025934 126.5997) + (xy 84.025932 126.599699) + (xy 84.025934 126.599699) + (xy 83.906805 126.587966) + (xy 83.871608 126.5845) + (xy 83.768392 126.5845) + (xy 83.730298 126.588251) + (xy 83.614067 126.599699) + (xy 83.416043 126.659769) + (xy 83.305898 126.718643) + (xy 83.23355 126.757315) + (xy 83.233548 126.757316) + (xy 83.233547 126.757317) + (xy 83.073589 126.888589) + (xy 82.942317 127.048547) + (xy 82.844769 127.231043) + (xy 82.784699 127.429067) + (xy 82.764417 127.635) + (xy 76.766719 127.635) + (xy 76.81786 127.622722) + (xy 76.936051 127.573765) + (xy 77.054239 127.524811) + (xy 77.05424 127.52481) + (xy 77.054243 127.524809) + (xy 77.272399 127.391123) + (xy 77.466956 127.224956) + (xy 77.633123 127.030399) + (xy 77.766809 126.812243) + (xy 77.773283 126.796615) + (xy 77.854847 126.5997) + (xy 77.864722 126.57586) + (xy 77.924452 126.32707) + (xy 77.944526 126.072) + (xy 77.924452 125.81693) + (xy 77.864722 125.56814) + (xy 77.856285 125.547771) + (xy 77.766811 125.33176) + (xy 77.766809 125.331757) + (xy 77.633124 125.113603) + (xy 77.633121 125.113598) + (xy 77.495211 124.952127) + (xy 77.466956 124.919044) + (xy 77.360591 124.8282) + (xy 77.272401 124.752878) + (xy 77.272396 124.752875) + (xy 77.054242 124.61919) + (xy 77.054239 124.619188) + (xy 76.817864 124.521279) + (xy 76.81786 124.521278) + (xy 76.56907 124.461548) + (xy 76.569068 124.461547) + (xy 76.569065 124.461547) + (xy 76.377868 124.4465) + (xy 76.377863 124.4465) + (xy 76.250137 124.4465) + (xy 76.250131 124.4465) + (xy 76.058934 124.461547) + (xy 75.810135 124.521279) + (xy 75.57376 124.619188) + (xy 75.573757 124.61919) + (xy 75.355603 124.752875) + (xy 75.355598 124.752878) + (xy 75.161044 124.919044) + (xy 74.994878 125.113598) + (xy 74.994875 125.113603) + (xy 74.86119 125.331757) + (xy 74.861188 125.33176) + (xy 74.763279 125.568135) + (xy 74.703547 125.816935) + (xy 74.683474 126.072) + (xy 73.144501 126.072) + (xy 73.144501 121.956) + (xy 82.764417 121.956) + (xy 82.784699 122.161932) + (xy 82.7847 122.161934) + (xy 82.844768 122.359954) + (xy 82.942315 122.54245) + (xy 82.942317 122.542452) + (xy 83.073589 122.70241) + (xy 83.170209 122.781702) + (xy 83.23355 122.833685) + (xy 83.416046 122.931232) + (xy 83.614066 122.9913) + (xy 83.614065 122.9913) + (xy 83.652647 122.9951) + (xy 83.768392 123.0065) + (xy 83.768395 123.0065) + (xy 83.871605 123.0065) + (xy 83.871608 123.0065) + (xy 84.025934 122.9913) + (xy 84.223954 122.931232) + (xy 84.40645 122.833685) + (xy 84.56641 122.70241) + (xy 84.697685 122.54245) + (xy 84.795232 122.359954) + (xy 84.8553 122.161934) + (xy 84.875583 121.956) + (xy 84.8553 121.750066) + (xy 84.795232 121.552046) + (xy 84.697685 121.36955) + (xy 84.645702 121.306209) + (xy 84.56641 121.209589) + (xy 84.406452 121.078317) + (xy 84.406453 121.078317) + (xy 84.40645 121.078315) + (xy 84.223954 120.980768) + (xy 84.025934 120.9207) + (xy 84.025932 120.920699) + (xy 84.025934 120.920699) + (xy 83.906805 120.908966) + (xy 83.871608 120.9055) + (xy 83.768392 120.9055) + (xy 83.730298 120.909251) + (xy 83.614067 120.920699) + (xy 83.416043 120.980769) + (xy 83.319284 121.032489) + (xy 83.23355 121.078315) + (xy 83.233548 121.078316) + (xy 83.233547 121.078317) + (xy 83.073589 121.209589) + (xy 82.942317 121.369547) + (xy 82.942315 121.36955) + (xy 82.906044 121.437408) + (xy 82.844769 121.552043) + (xy 82.784699 121.750067) + (xy 82.764417 121.956) + (xy 73.144501 121.956) + (xy 73.144501 108.003383) + (xy 73.144685 107.996627) + (xy 73.148067 107.934635) + (xy 73.160737 107.702418) + (xy 73.162205 107.689004) + (xy 73.209625 107.401611) + (xy 73.21254 107.388454) + (xy 73.29095 107.107919) + (xy 73.295281 107.095154) + (xy 73.403741 106.824832) + (xy 73.409434 106.812612) + (xy 73.54667 106.555679) + (xy 73.553669 106.544138) + (xy 73.558088 106.537673) + (xy 73.718032 106.30368) + (xy 73.726233 106.292984) + (xy 73.915801 106.071815) + (xy 73.925104 106.062089) + (xy 74.118834 105.880461) + (xy 74.136164 105.866893) + (xy 74.148239 105.859063) + (xy 74.163359 105.842288) + (xy 74.17569 105.830382) + (xy 74.192986 105.815856) + (xy 74.208624 105.793496) + (xy 74.218142 105.781533) + (xy 74.273087 105.720617) + (xy 74.409292 105.521719) + (xy 74.51788 105.306496) + (xy 74.596926 105.078759) + (xy 74.64503 104.842542) + (xy 74.661341 104.60203) + (xy 74.66134 104.60202) + (xy 74.661341 104.602018) + (xy 74.651639 104.454056) + (xy 74.645569 104.361481) + (xy 74.597994 104.125157) + (xy 74.589325 104.1) + (xy 74.519462 103.897252) + (xy 74.519455 103.897235) + (xy 74.443518 103.745884) + (xy 74.411354 103.681777) + (xy 74.275595 103.482575) + (xy 74.238191 103.440917) + (xy 74.228844 103.429143) + (xy 74.197374 103.384149) + (xy 74.197372 103.384146) + (xy 74.197369 103.384144) + (xy 74.197368 103.384142) + (xy 74.162829 103.35513) + (xy 74.152067 103.344715) + (xy 74.145797 103.339341) + (xy 74.136814 103.332292) + (xy 73.929504 103.137933) + (xy 73.920175 103.128179) + (xy 73.730623 102.907028) + (xy 73.722405 102.896309) + (xy 73.660757 102.80612) + (xy 73.558049 102.655861) + (xy 73.551046 102.644311) + (xy 73.501163 102.55092) + (xy 73.413828 102.387409) + (xy 73.408123 102.375167) + (xy 73.337961 102.200297) + (xy 73.299665 102.104848) + (xy 73.295327 102.092058) + (xy 73.283691 102.050425) + (xy 73.216926 101.81155) + (xy 73.214009 101.798386) + (xy 73.16659 101.510998) + (xy 73.165121 101.497574) + (xy 73.158933 101.384169) + (xy 73.149069 101.203372) + (xy 73.148885 101.196616) + (xy 73.148885 101.134105) + (xy 73.148727 101.133516) + (xy 73.1445 101.101417) + (xy 73.1445 98.912025) + (xy 73.79471 98.912025) + (xy 73.799028 98.961368) + (xy 73.7995 98.972176) + (xy 73.7995 98.977711) + (xy 73.803098 99.008495) + (xy 73.803464 99.012083) + (xy 73.81 99.086791) + (xy 73.811461 99.093867) + (xy 73.811403 99.093878) + (xy 73.813034 99.101237) + (xy 73.813092 99.101224) + (xy 73.814757 99.108249) + (xy 73.8404 99.178705) + (xy 73.841582 99.182107) + (xy 73.865182 99.253326) + (xy 73.868236 99.259874) + (xy 73.868182 99.259898) + (xy 73.87147 99.266688) + (xy 73.871521 99.266663) + (xy 73.874761 99.273114) + (xy 73.915979 99.335784) + (xy 73.917889 99.338782) + (xy 73.943618 99.380493) + (xy 73.957289 99.402658) + (xy 73.961766 99.408319) + (xy 73.961719 99.408356) + (xy 73.966482 99.414202) + (xy 73.966528 99.414164) + (xy 73.971173 99.419699) + (xy 74.025708 99.47115) + (xy 74.028296 99.473664) + (xy 74.542039 99.987407) + (xy 75.03693 100.482297) + (xy 75.070415 100.54362) + (xy 75.069456 100.600412) + (xy 75.067866 100.606691) + (xy 75.067865 100.606695) + (xy 75.0487 100.837993) + (xy 75.0487 100.838006) + (xy 75.067864 101.069297) + (xy 75.067866 101.069308) + (xy 75.124842 101.2943) + (xy 75.218075 101.506848) + (xy 75.345016 101.701147) + (xy 75.345019 101.701151) + (xy 75.345021 101.701153) + (xy 75.502216 101.871913) + (xy 75.502219 101.871915) + (xy 75.502222 101.871918) + (xy 75.685365 102.014464) + (xy 75.685371 102.014468) + (xy 75.685374 102.01447) + (xy 75.889497 102.124936) + (xy 75.968332 102.152) + (xy 76.109015 102.200297) + (xy 76.109017 102.200297) + (xy 76.109019 102.200298) + (xy 76.337951 102.2385) + (xy 76.337952 102.2385) + (xy 76.570048 102.2385) + (xy 76.570049 102.2385) + (xy 76.798981 102.200298) + (xy 77.018503 102.124936) + (xy 77.222626 102.01447) + (xy 77.405784 101.871913) + (xy 77.562979 101.701153) + (xy 77.689924 101.506849) + (xy 77.783157 101.2943) + (xy 77.840134 101.069305) + (xy 77.840135 101.069297) + (xy 77.8593 100.838006) + (xy 77.8593 100.837993) + (xy 77.840135 100.606702) + (xy 77.840133 100.606691) + (xy 77.783157 100.381699) + (xy 77.689924 100.169151) + (xy 77.562983 99.974852) + (xy 77.56298 99.974849) + (xy 77.562979 99.974847) + (xy 77.405784 99.804087) + (xy 77.227773 99.665536) + (xy 77.186961 99.608826) + (xy 77.183286 99.539053) + (xy 77.217917 99.47837) + (xy 77.227772 99.469831) + (xy 77.252797 99.450352) + (xy 77.252798 99.450351) + (xy 76.542231 98.739784) + (xy 76.588138 98.732865) + (xy 76.710357 98.674007) + (xy 76.809798 98.58174) + (xy 76.877625 98.46426) + (xy 76.895499 98.385946) + (xy 77.605186 99.095633) + (xy 77.689482 98.966611) + (xy 77.782682 98.754135) + (xy 77.839638 98.529218) + (xy 77.858798 98.298005) + (xy 77.858798 98.297994) + (xy 77.839638 98.066781) + (xy 77.782682 97.841864) + (xy 77.689484 97.629393) + (xy 77.605186 97.500365) + (xy 76.898449 98.207102) + (xy 76.897673 98.196735) + (xy 76.848113 98.070459) + (xy 76.763535 97.964401) + (xy 76.651453 97.887984) + (xy 76.543699 97.854746) + (xy 77.2266 97.171844) + (xy 77.275276 97.141819) + (xy 77.42322 97.092797) + (xy 77.572581 97.00067) + (xy 77.69667 96.876581) + (xy 77.788797 96.72722) + (xy 77.843996 96.560638) + (xy 77.8545 96.457826) + (xy 77.8545 95.058174) + (xy 77.843996 94.955362) + (xy 77.83579 94.930599) + (xy 77.812579 94.860551) + (xy 77.788797 94.78878) + (xy 77.69667 94.639419) + (xy 77.572581 94.51533) + (xy 77.434929 94.430425) + (xy 77.423222 94.423204) + (xy 77.423217 94.423202) + (xy 77.256638 94.368003) + (xy 77.153833 94.3575) + (xy 77.153826 94.3575) + (xy 75.754174 94.3575) + (xy 75.754166 94.3575) + (xy 75.651361 94.368003) + (xy 75.484782 94.423202) + (xy 75.478232 94.426257) + (xy 75.477028 94.423675) + (xy 75.422181 94.438671) + (xy 75.355521 94.417736) + (xy 75.310762 94.364086) + (xy 75.3005 94.314693) + (xy 75.3005 93.262243) + (xy 75.320185 93.195204) + (xy 75.372989 93.149449) + (xy 75.437756 93.138954) + (xy 75.452127 93.1405) + (xy 76.887769 93.140499) + (xy 76.954808 93.160184) + (xy 76.97545 93.176818) + (xy 81.38427 97.585638) + (xy 81.396051 97.59927) + (xy 81.410388 97.618528) + (xy 81.410389 97.618529) + (xy 81.41039 97.61853) + (xy 81.417253 97.624289) + (xy 81.448337 97.650372) + (xy 81.45631 97.657679) + (xy 81.460217 97.661586) + (xy 81.460223 97.661591) + (xy 81.484537 97.680816) + (xy 81.487318 97.68308) + (xy 81.507223 97.699783) + (xy 81.544789 97.731305) + (xy 81.550818 97.73527) + (xy 81.550785 97.735319) + (xy 81.557147 97.739372) + (xy 81.557179 97.739321) + (xy 81.563319 97.743108) + (xy 81.563323 97.743111) + (xy 81.601977 97.761135) + (xy 81.63132 97.774819) + (xy 81.634566 97.776391) + (xy 81.701562 97.810038) + (xy 81.708357 97.812511) + (xy 81.708336 97.812567) + (xy 81.715457 97.815043) + (xy 81.715476 97.814986) + (xy 81.722319 97.817253) + (xy 81.722327 97.817257) + (xy 81.795895 97.832447) + (xy 81.799228 97.833186) + (xy 81.872279 97.8505) + (xy 81.872281 97.8505) + (xy 81.872285 97.850501) + (xy 81.879453 97.851339) + (xy 81.879446 97.851398) + (xy 81.886944 97.852164) + (xy 81.88695 97.852105) + (xy 81.894139 97.852734) + (xy 81.894143 97.852733) + (xy 81.894144 97.852734) + (xy 81.96913 97.850552) + (xy 81.972737 97.8505) + (xy 93.036295 97.8505) + (xy 93.054265 97.851809) + (xy 93.078023 97.855289) + (xy 93.127369 97.850971) + (xy 93.138176 97.8505) + (xy 93.143704 97.8505) + (xy 93.143709 97.8505) + (xy 93.174556 97.846893) + (xy 93.17803 97.846539) + (xy 93.252797 97.839999) + (xy 93.252805 97.839996) + (xy 93.259866 97.838539) + (xy 93.259878 97.838598) + (xy 93.267243 97.836965) + (xy 93.267229 97.836906) + (xy 93.274249 97.835241) + (xy 93.274255 97.835241) + (xy 93.344779 97.809572) + (xy 93.348117 97.808412) + (xy 93.419334 97.784814) + (xy 93.419342 97.784808) + (xy 93.425882 97.78176) + (xy 93.425908 97.781816) + (xy 93.43269 97.778532) + (xy 93.432663 97.778478) + (xy 93.439113 97.775238) + (xy 93.439117 97.775237) + (xy 93.501837 97.733984) + (xy 93.504732 97.73214) + (xy 93.568656 97.692712) + (xy 93.568662 97.692705) + (xy 93.574325 97.688229) + (xy 93.574362 97.688277) + (xy 93.580204 97.683518) + (xy 93.580164 97.683471) + (xy 93.585686 97.678835) + (xy 93.585696 97.67883) + (xy 93.637185 97.624253) + (xy 93.639632 97.621734) + (xy 95.137819 96.123548) + (xy 95.199142 96.090063) + (xy 95.268834 96.095047) + (xy 95.324767 96.136919) + (xy 95.349184 96.202383) + (xy 95.3495 96.211229) + (xy 95.3495 103.976) + (xy 95.329815 104.043039) + (xy 95.277011 104.088794) + (xy 95.2255 104.1) + (xy 77.599999 104.1) + (xy 77.4 104.299999) + (xy 77.4 104.9) + (xy 77.6 105.1) + (xy 95.2255 105.1) + (xy 95.292539 105.119685) + (xy 95.338294 105.172489) + (xy 95.3495 105.224) + (xy 95.3495 105.937769) + (xy 95.329815 106.004808) + (xy 95.313181 106.02545) + (xy 93.211681 108.12695) + (xy 93.150358 108.160435) + (xy 93.080666 108.155451) + (xy 93.024733 108.113579) + (xy 93.000316 108.048115) + (xy 93 108.039269) + (xy 93 107.692) + (xy 92.133686 107.692) + (xy 92.159493 107.651844) + (xy 92.2 107.513889) + (xy 92.2 107.370111) + (xy 92.159493 107.232156) + (xy 92.133686 107.192) + (xy 93 107.192) + (xy 93 106.594172) + (xy 92.999999 106.594155) + (xy 92.993598 106.534627) + (xy 92.993596 106.53462) + (xy 92.943354 106.399913) + (xy 92.94335 106.399906) + (xy 92.85719 106.284812) + (xy 92.857187 106.284809) + (xy 92.742093 106.198649) + (xy 92.742086 106.198645) + (xy 92.607379 106.148403) + (xy 92.607372 106.148401) + (xy 92.547844 106.142) + (xy 91.95 106.142) + (xy 91.95 107.006498) + (xy 91.842315 106.95732) + (xy 91.735763 106.942) + (xy 91.664237 106.942) + (xy 91.557685 106.95732) + (xy 91.45 107.006498) + (xy 91.45 106.142) + (xy 90.852155 106.142) + (xy 90.792627 106.148401) + (xy 90.79262 106.148403) + (xy 90.657913 106.198645) + (xy 90.657906 106.198649) + (xy 90.542812 106.284809) + (xy 90.542809 106.284812) + (xy 90.456649 106.399906) + (xy 90.456645 106.399913) + (xy 90.406403 106.53462) + (xy 90.406401 106.534627) + (xy 90.4 106.594155) + (xy 90.4 107.192) + (xy 91.266314 107.192) + (xy 91.240507 107.232156) + (xy 91.2 107.370111) + (xy 91.2 107.513889) + (xy 91.240507 107.651844) + (xy 91.266314 107.692) + (xy 90.4 107.692) + (xy 90.4 108.289844) + (xy 90.406401 108.349372) + (xy 90.406403 108.349379) + (xy 90.456645 108.484086) + (xy 90.456649 108.484093) + (xy 90.542809 108.599187) + (xy 90.542812 108.59919) + (xy 90.657906 108.68535) + (xy 90.657913 108.685354) + (xy 90.79262 108.735596) + (xy 90.792627 108.735598) + (xy 90.828218 108.739425) + (xy 90.892769 108.766163) + (xy 90.932618 108.823555) + (xy 90.935111 108.89338) + (xy 90.899459 108.953469) + (xy 90.886088 108.964287) + (xy 90.860861 108.981951) + (xy 90.699954 109.142858) + (xy 90.569432 109.329265) + (xy 90.569431 109.329267) + (xy 90.473261 109.535502) + (xy 90.473258 109.535511) + (xy 90.414366 109.755302) + (xy 90.414364 109.755313) + (xy 90.394532 109.981998) + (xy 90.394532 109.982001) + (xy 90.414364 110.208686) + (xy 90.414366 110.208697) + (xy 90.473258 110.428488) + (xy 90.473261 110.428497) + (xy 90.569431 110.634732) + (xy 90.569432 110.634734) + (xy 90.699954 110.821141) + (xy 90.860858 110.982045) + (xy 90.860861 110.982047) + (xy 91.047266 111.112568) + (xy 91.105275 111.139618) + (xy 91.157714 111.185791) + (xy 91.176866 111.252984) + (xy 91.15665 111.319865) + (xy 91.105275 111.364382) + (xy 91.047267 111.391431) + (xy 91.047265 111.391432) + (xy 90.860858 111.521954) + (xy 90.699954 111.682858) + (xy 90.587387 111.843623) + (xy 90.532811 111.887248) + (xy 90.485812 111.8965) + (xy 89.5445 111.8965) + (xy 89.477461 111.876815) + (xy 89.431706 111.824011) + (xy 89.4205 111.7725) + (xy 89.420499 110.852129) + (xy 89.420498 110.852123) + (xy 89.414091 110.792516) + (xy 89.363796 110.657669) + (xy 89.359942 110.650611) + (xy 89.345087 110.582339) + (xy 89.3695 110.516873) + (xy 89.381083 110.503505) + (xy 89.483786 110.400802) + (xy 89.496048 110.39098) + (xy 89.495865 110.390759) + (xy 89.501868 110.385791) + (xy 89.501877 110.385786) + (xy 89.547934 110.336739) + (xy 89.550582 110.334006) + (xy 89.57012 110.31447) + (xy 89.572584 110.311292) + (xy 89.580154 110.302429) + (xy 89.610062 110.270582) + (xy 89.619713 110.253024) + (xy 89.630396 110.236761) + (xy 89.642673 110.220936) + (xy 89.660018 110.180849) + (xy 89.665152 110.170371) + (xy 89.686197 110.132092) + (xy 89.691178 110.112687) + (xy 89.697482 110.094279) + (xy 89.700396 110.087546) + (xy 89.705438 110.075895) + (xy 89.71227 110.032748) + (xy 89.714639 110.021316) + (xy 89.724734 109.982001) + (xy 89.7255 109.979019) + (xy 89.7255 109.958983) + (xy 89.727027 109.939582) + (xy 89.727449 109.936918) + (xy 89.73016 109.919804) + (xy 89.72605 109.876324) + (xy 89.7255 109.864655) + (xy 89.7255 108.982738) + (xy 89.727224 108.967124) + (xy 89.726938 108.967097) + (xy 89.727672 108.959334) + (xy 89.725561 108.892144) + (xy 89.7255 108.88825) + (xy 89.7255 108.860651) + (xy 89.7255 108.86065) + (xy 89.724997 108.85667) + (xy 89.72408 108.845021) + (xy 89.722709 108.801373) + (xy 89.717122 108.782144) + (xy 89.713174 108.763084) + (xy 89.710663 108.743204) + (xy 89.694588 108.702604) + (xy 89.690804 108.691552) + (xy 89.678618 108.649609) + (xy 89.678616 108.649606) + (xy 89.668423 108.632371) + (xy 89.659861 108.614894) + (xy 89.652487 108.596269) + (xy 89.642929 108.583114) + (xy 89.626811 108.56093) + (xy 89.620405 108.551177) + (xy 89.59817 108.51358) + (xy 89.598168 108.513578) + (xy 89.598165 108.513574) + (xy 89.584006 108.499415) + (xy 89.571368 108.484619) + (xy 89.559594 108.468413) + (xy 89.525942 108.440574) + (xy 89.517301 108.432711) + (xy 89.300802 108.216211) + (xy 89.290981 108.203952) + (xy 89.29076 108.204135) + (xy 89.285788 108.198125) + (xy 89.236774 108.152097) + (xy 89.233978 108.149387) + (xy 89.226085 108.141494) + (xy 89.1926 108.080171) + (xy 89.197584 108.010479) + (xy 89.239453 107.954548) + (xy 89.287546 107.918546) + (xy 89.373796 107.803331) + (xy 89.424091 107.668483) + (xy 89.4305 107.608873) + (xy 89.430499 106.513128) + (xy 89.424091 106.453517) + (xy 89.413699 106.425655) + (xy 89.373797 106.318671) + (xy 89.373793 106.318664) + (xy 89.287547 106.203455) + (xy 89.287544 106.203452) + (xy 89.172335 106.117206) + (xy 89.172328 106.117202) + (xy 89.037482 106.066908) + (xy 89.037483 106.066908) + (xy 88.977883 106.060501) + (xy 88.977881 106.0605) + (xy 88.977873 106.0605) + (xy 88.977864 106.0605) + (xy 87.882129 106.0605) + (xy 87.882123 106.060501) + (xy 87.822516 106.066908) + (xy 87.687671 106.117202) + (xy 87.687666 106.117205) + (xy 87.679614 106.123233) + (xy 87.614149 106.147648) + (xy 87.55053 106.134104) + (xy 87.550359 106.134518) + (xy 87.548123 106.133592) + (xy 87.54685 106.133321) + (xy 87.544729 106.132187) + (xy 87.544728 106.132186) + (xy 87.544727 106.132186) + (xy 87.356132 106.074976) + (xy 87.356129 106.074975) + (xy 87.16 106.055659) + (xy 86.96387 106.074975) + (xy 86.775266 106.132188) + (xy 86.601467 106.225086) + (xy 86.596399 106.228473) + (xy 86.595305 106.226836) + (xy 86.539337 106.250596) + (xy 86.470471 106.238795) + (xy 86.453843 106.228109) + (xy 86.453601 106.228473) + (xy 86.448532 106.225086) + (xy 86.274733 106.132188) + (xy 86.274727 106.132186) + (xy 86.086132 106.074976) + (xy 86.086129 106.074975) + (xy 85.89 106.055659) + (xy 85.69387 106.074975) + (xy 85.505266 106.132188) + (xy 85.331467 106.225086) + (xy 85.326399 106.228473) + (xy 85.325305 106.226836) + (xy 85.269337 106.250596) + (xy 85.200471 106.238795) + (xy 85.183843 106.228109) + (xy 85.183601 106.228473) + (xy 85.178532 106.225086) + (xy 85.004733 106.132188) + (xy 85.004727 106.132186) + (xy 84.816132 106.074976) + (xy 84.816129 106.074975) + (xy 84.62 106.055659) + (xy 84.42387 106.074975) + (xy 84.235266 106.132188) + (xy 84.061467 106.225086) + (xy 84.056399 106.228473) + (xy 84.055305 106.226836) + (xy 83.999337 106.250596) + (xy 83.930471 106.238795) + (xy 83.913843 106.228109) + (xy 83.913601 106.228473) + (xy 83.908532 106.225086) + (xy 83.734733 106.132188) + (xy 83.734727 106.132186) + (xy 83.546132 106.074976) + (xy 83.546129 106.074975) + (xy 83.35 106.055659) + (xy 83.15387 106.074975) + (xy 82.965266 106.132188) + (xy 82.791467 106.225086) + (xy 82.786399 106.228473) + (xy 82.785305 106.226836) + (xy 82.729337 106.250596) + (xy 82.660471 106.238795) + (xy 82.643843 106.228109) + (xy 82.643601 106.228473) + (xy 82.638532 106.225086) + (xy 82.464733 106.132188) + (xy 82.464727 106.132186) + (xy 82.276132 106.074976) + (xy 82.276129 106.074975) + (xy 82.08 106.055659) + (xy 81.88387 106.074975) + (xy 81.695266 106.132188) + (xy 81.521467 106.225086) + (xy 81.516399 106.228473) + (xy 81.515305 106.226836) + (xy 81.459337 106.250596) + (xy 81.390471 106.238795) + (xy 81.373843 106.228109) + (xy 81.373601 106.228473) + (xy 81.368532 106.225086) + (xy 81.194733 106.132188) + (xy 81.194727 106.132186) + (xy 81.006132 106.074976) + (xy 81.006129 106.074975) + (xy 80.81 106.055659) + (xy 80.61387 106.074975) + (xy 80.425266 106.132188) + (xy 80.251467 106.225086) + (xy 80.246399 106.228473) + (xy 80.245386 106.226958) + (xy 80.188936 106.25092) + (xy 80.120071 106.239115) + (xy 80.103574 106.228511) + (xy 80.103322 106.22889) + (xy 80.098253 106.225503) + (xy 79.924541 106.132652) + (xy 79.79 106.091839) + (xy 79.79 106.812061) + (xy 79.708885 106.748928) + (xy 79.598405 106.711) + (xy 79.510995 106.711) + (xy 79.424784 106.725386) + (xy 79.322053 106.780981) + (xy 79.29 106.815799) + (xy 79.29 106.091839) + (xy 79.289999 106.091839) + (xy 79.155458 106.132652) + (xy 78.981742 106.225505) + (xy 78.976673 106.228893) + (xy 78.975556 106.227221) + (xy 78.919715 106.250921) + (xy 78.850851 106.239111) + (xy 78.833811 106.228158) + (xy 78.833601 106.228473) + (xy 78.828532 106.225086) + (xy 78.654733 106.132188) + (xy 78.654727 106.132186) + (xy 78.466132 106.074976) + (xy 78.466129 106.074975) + (xy 78.27 106.055659) + (xy 78.07387 106.074975) + (xy 77.885266 106.132188) + (xy 77.711467 106.225086) + (xy 77.706399 106.228473) + (xy 77.705305 106.226836) + (xy 77.649337 106.250596) + (xy 77.580471 106.238795) + (xy 77.563843 106.228109) + (xy 77.563601 106.228473) + (xy 77.558532 106.225086) + (xy 77.384733 106.132188) + (xy 77.384727 106.132186) + (xy 77.196132 106.074976) + (xy 77.196129 106.074975) + (xy 77 106.055659) + (xy 76.80387 106.074975) + (xy 76.615266 106.132188) + (xy 76.441467 106.225086) + (xy 76.436399 106.228473) + (xy 76.435305 106.226836) + (xy 76.379337 106.250596) + (xy 76.310471 106.238795) + (xy 76.293843 106.228109) + (xy 76.293601 106.228473) + (xy 76.288532 106.225086) + (xy 76.114733 106.132188) + (xy 76.114727 106.132186) + (xy 75.926132 106.074976) + (xy 75.926129 106.074975) + (xy 75.73 106.055659) + (xy 75.53387 106.074975) + (xy 75.345266 106.132188) + (xy 75.171467 106.225086) + (xy 75.17146 106.22509) + (xy 75.019116 106.350116) + (xy 74.89409 106.50246) + (xy 74.894086 106.502467) + (xy 74.801188 106.676266) + (xy 74.743975 106.86487) + (xy 74.724659 107.061) + (xy 74.743975 107.257129) + (xy 74.801188 107.445733) + (xy 74.894086 107.619532) + (xy 74.89409 107.619539) + (xy 75.019116 107.771883) + (xy 75.17146 107.896909) + (xy 75.171467 107.896913) + (xy 75.345266 107.989811) + (xy 75.345269 107.989811) + (xy 75.345273 107.989814) + (xy 75.533868 108.047024) + (xy 75.73 108.066341) + (xy 75.926132 108.047024) + (xy 76.114727 107.989814) + (xy 76.288538 107.89691) + (xy 76.288544 107.896904) + (xy 76.293607 107.893523) + (xy 76.294703 107.895164) + (xy 76.350639 107.871405) + (xy 76.419507 107.883194) + (xy 76.436148 107.893888) + (xy 76.436393 107.893523) + (xy 76.441458 107.896907) + (xy 76.441462 107.89691) + (xy 76.579968 107.970943) + (xy 76.615265 107.98981) + (xy 76.615273 107.989814) + (xy 76.803868 108.047024) + (xy 77 108.066341) + (xy 77.196132 108.047024) + (xy 77.384727 107.989814) + (xy 77.558538 107.89691) + (xy 77.558544 107.896904) + (xy 77.563607 107.893523) + (xy 77.564703 107.895164) + (xy 77.620639 107.871405) + (xy 77.689507 107.883194) + (xy 77.706148 107.893888) + (xy 77.706393 107.893523) + (xy 77.711458 107.896907) + (xy 77.711462 107.89691) + (xy 77.849968 107.970943) + (xy 77.885265 107.98981) + (xy 77.885273 107.989814) + (xy 78.073868 108.047024) + (xy 78.27 108.066341) + (xy 78.466132 108.047024) + (xy 78.654727 107.989814) + (xy 78.828538 107.89691) + (xy 78.828544 107.896904) + (xy 78.833607 107.893523) + (xy 78.834624 107.895045) + (xy 78.891021 107.871084) + (xy 78.95989 107.882866) + (xy 78.976424 107.893489) + (xy 78.976678 107.89311) + (xy 78.981738 107.896491) + (xy 79.155465 107.989349) + (xy 79.29 108.030159) + (xy 79.29 107.309938) + (xy 79.371115 107.373072) + (xy 79.481595 107.411) + (xy 79.569005 107.411) + (xy 79.655216 107.396614) + (xy 79.757947 107.341019) + (xy 79.79 107.3062) + (xy 79.79 108.030159) + (xy 79.924534 107.989349) + (xy 80.098259 107.896492) + (xy 80.10332 107.893111) + (xy 80.104444 107.894793) + (xy 80.160203 107.871086) + (xy 80.229075 107.882851) + (xy 80.246186 107.893843) + (xy 80.246399 107.893526) + (xy 80.251457 107.896906) + (xy 80.251462 107.89691) + (xy 80.389594 107.970743) + (xy 80.425265 107.98981) + (xy 80.425273 107.989814) + (xy 80.613868 108.047024) + (xy 80.81 108.066341) + (xy 81.006132 108.047024) + (xy 81.194727 107.989814) + (xy 81.368538 107.89691) + (xy 81.368544 107.896904) + (xy 81.373607 107.893523) + (xy 81.374703 107.895164) + (xy 81.430639 107.871405) + (xy 81.499507 107.883194) + (xy 81.516148 107.893888) + (xy 81.516393 107.893523) + (xy 81.521458 107.896907) + (xy 81.521462 107.89691) + (xy 81.659968 107.970943) + (xy 81.695265 107.98981) + (xy 81.695273 107.989814) + (xy 81.883868 108.047024) + (xy 82.08 108.066341) + (xy 82.276132 108.047024) + (xy 82.464727 107.989814) + (xy 82.638538 107.89691) + (xy 82.638544 107.896904) + (xy 82.643607 107.893523) + (xy 82.644703 107.895164) + (xy 82.700639 107.871405) + (xy 82.769507 107.883194) + (xy 82.786148 107.893888) + (xy 82.786393 107.893523) + (xy 82.791458 107.896907) + (xy 82.791462 107.89691) + (xy 82.929968 107.970943) + (xy 82.965265 107.98981) + (xy 82.965273 107.989814) + (xy 83.153868 108.047024) + (xy 83.35 108.066341) + (xy 83.546132 108.047024) + (xy 83.734727 107.989814) + (xy 83.908538 107.89691) + (xy 83.908544 107.896904) + (xy 83.913607 107.893523) + (xy 83.914703 107.895164) + (xy 83.970639 107.871405) + (xy 84.039507 107.883194) + (xy 84.056148 107.893888) + (xy 84.056393 107.893523) + (xy 84.061458 107.896907) + (xy 84.061462 107.89691) + (xy 84.235273 107.989814) + (xy 84.417301 108.045032) + (xy 84.475739 108.083329) + (xy 84.504195 108.147141) + (xy 84.493635 108.216208) + (xy 84.447411 108.268602) + (xy 84.42464 108.279873) + (xy 84.407674 108.286201) + (xy 84.407664 108.286206) + (xy 84.292455 108.372452) + (xy 84.292452 108.372455) + (xy 84.206206 108.487664) + (xy 84.206202 108.487671) + (xy 84.155908 108.622517) + (xy 84.149501 108.682116) + (xy 84.1495 108.682135) + (xy 84.1495 109.77787) + (xy 84.149501 109.777876) + (xy 84.155908 109.837483) + (xy 84.206202 109.972328) + (xy 84.206206 109.972335) + (xy 84.292452 110.087544) + (xy 84.292455 110.087547) + (xy 84.407664 110.173793) + (xy 84.407671 110.173797) + (xy 84.421631 110.179004) + (xy 84.477565 110.220875) + (xy 84.501982 110.28634) + (xy 84.48713 110.354613) + (xy 84.437725 110.404018) + (xy 84.414294 110.413846) + (xy 84.225271 110.471186) + (xy 84.051467 110.564086) + (xy 84.046399 110.567473) + (xy 84.045305 110.565836) + (xy 83.989337 110.589596) + (xy 83.920471 110.577795) + (xy 83.903843 110.567109) + (xy 83.903601 110.567473) + (xy 83.898532 110.564086) + (xy 83.724733 110.471188) + (xy 83.724727 110.471186) + (xy 83.573195 110.425219) + (xy 83.536129 110.413975) + (xy 83.34 110.394659) + (xy 83.14387 110.413975) + (xy 82.955266 110.471188) + (xy 82.781467 110.564086) + (xy 82.776399 110.567473) + (xy 82.775305 110.565836) + (xy 82.719337 110.589596) + (xy 82.650471 110.577795) + (xy 82.633843 110.567109) + (xy 82.633601 110.567473) + (xy 82.628532 110.564086) + (xy 82.454733 110.471188) + (xy 82.454727 110.471186) + (xy 82.303195 110.425219) + (xy 82.266129 110.413975) + (xy 82.07 110.394659) + (xy 81.87387 110.413975) + (xy 81.685266 110.471188) + (xy 81.511467 110.564086) + (xy 81.506399 110.567473) + (xy 81.505305 110.565836) + (xy 81.449337 110.589596) + (xy 81.380471 110.577795) + (xy 81.363843 110.567109) + (xy 81.363601 110.567473) + (xy 81.358532 110.564086) + (xy 81.184733 110.471188) + (xy 81.184727 110.471186) + (xy 81.033195 110.425219) + (xy 80.996129 110.413975) + (xy 80.8 110.394659) + (xy 80.60387 110.413975) + (xy 80.415266 110.471188) + (xy 80.241467 110.564086) + (xy 80.236399 110.567473) + (xy 80.235386 110.565958) + (xy 80.178936 110.58992) + (xy 80.110071 110.578115) + (xy 80.093574 110.567511) + (xy 80.093322 110.56789) + (xy 80.088253 110.564503) + (xy 79.914541 110.471652) + (xy 79.78 110.430839) + (xy 79.78 111.151061) + (xy 79.698885 111.087928) + (xy 79.588405 111.05) + (xy 79.500995 111.05) + (xy 79.414784 111.064386) + (xy 79.312053 111.119981) + (xy 79.28 111.154799) + (xy 79.28 110.430839) + (xy 79.279999 110.430839) + (xy 79.145458 110.471652) + (xy 78.971742 110.564505) + (xy 78.966673 110.567893) + (xy 78.965556 110.566221) + (xy 78.909715 110.589921) + (xy 78.840851 110.578111) + (xy 78.823811 110.567158) + (xy 78.823601 110.567473) + (xy 78.818532 110.564086) + (xy 78.644733 110.471188) + (xy 78.644727 110.471186) + (xy 78.493195 110.425219) + (xy 78.456129 110.413975) + (xy 78.26 110.394659) + (xy 78.06387 110.413975) + (xy 77.875266 110.471188) + (xy 77.701467 110.564086) + (xy 77.696399 110.567473) + (xy 77.695305 110.565836) + (xy 77.639337 110.589596) + (xy 77.570471 110.577795) + (xy 77.553843 110.567109) + (xy 77.553601 110.567473) + (xy 77.548532 110.564086) + (xy 77.374733 110.471188) + (xy 77.374727 110.471186) + (xy 77.223195 110.425219) + (xy 77.186129 110.413975) + (xy 76.99 110.394659) + (xy 76.79387 110.413975) + (xy 76.605266 110.471188) + (xy 76.431467 110.564086) + (xy 76.426399 110.567473) + (xy 76.425305 110.565836) + (xy 76.369337 110.589596) + (xy 76.300471 110.577795) + (xy 76.283843 110.567109) + (xy 76.283601 110.567473) + (xy 76.278532 110.564086) + (xy 76.104733 110.471188) + (xy 76.104727 110.471186) + (xy 75.953195 110.425219) + (xy 75.916129 110.413975) + (xy 75.72 110.394659) + (xy 75.52387 110.413975) + (xy 75.335266 110.471188) + (xy 75.161467 110.564086) + (xy 75.16146 110.56409) + (xy 75.009116 110.689116) + (xy 74.88409 110.84146) + (xy 74.884086 110.841467) + (xy 74.791188 111.015266) + (xy 74.733975 111.20387) + (xy 74.714659 111.4) + (xy 74.733975 111.596129) + (xy 74.791188 111.784733) + (xy 74.884086 111.958532) + (xy 74.88409 111.958539) + (xy 75.009116 112.110883) + (xy 75.16146 112.235909) + (xy 75.161467 112.235913) + (xy 75.335266 112.328811) + (xy 75.335269 112.328811) + (xy 75.335273 112.328814) + (xy 75.523868 112.386024) + (xy 75.72 112.405341) + (xy 75.916132 112.386024) + (xy 76.104727 112.328814) + (xy 76.278538 112.23591) + (xy 76.278544 112.235904) + (xy 76.283607 112.232523) + (xy 76.284703 112.234164) + (xy 76.340639 112.210405) + (xy 76.409507 112.222194) + (xy 76.426148 112.232888) + (xy 76.426393 112.232523) + (xy 76.431458 112.235907) + (xy 76.431462 112.23591) + (xy 76.605273 112.328814) + (xy 76.793868 112.386024) + (xy 76.99 112.405341) + (xy 77.186132 112.386024) + (xy 77.374727 112.328814) + (xy 77.548538 112.23591) + (xy 77.548544 112.235904) + (xy 77.553607 112.232523) + (xy 77.554703 112.234164) + (xy 77.610639 112.210405) + (xy 77.679507 112.222194) + (xy 77.696148 112.232888) + (xy 77.696393 112.232523) + (xy 77.701458 112.235907) + (xy 77.701462 112.23591) + (xy 77.875273 112.328814) + (xy 78.063868 112.386024) + (xy 78.26 112.405341) + (xy 78.456132 112.386024) + (xy 78.644727 112.328814) + (xy 78.818538 112.23591) + (xy 78.818544 112.235904) + (xy 78.823607 112.232523) + (xy 78.824624 112.234045) + (xy 78.881021 112.210084) + (xy 78.94989 112.221866) + (xy 78.966424 112.232489) + (xy 78.966678 112.23211) + (xy 78.971738 112.235491) + (xy 79.145465 112.328349) + (xy 79.28 112.369159) + (xy 79.28 111.648938) + (xy 79.361115 111.712072) + (xy 79.471595 111.75) + (xy 79.559005 111.75) + (xy 79.645216 111.735614) + (xy 79.747947 111.680019) + (xy 79.78 111.6452) + (xy 79.78 112.369159) + (xy 79.914534 112.328349) + (xy 80.088259 112.235492) + (xy 80.09332 112.232111) + (xy 80.094444 112.233793) + (xy 80.150203 112.210086) + (xy 80.219075 112.221851) + (xy 80.236186 112.232843) + (xy 80.236399 112.232526) + (xy 80.241457 112.235906) + (xy 80.241462 112.23591) + (xy 80.415273 112.328814) + (xy 80.603868 112.386024) + (xy 80.8 112.405341) + (xy 80.996132 112.386024) + (xy 81.184727 112.328814) + (xy 81.358538 112.23591) + (xy 81.358544 112.235904) + (xy 81.363607 112.232523) + (xy 81.364703 112.234164) + (xy 81.420639 112.210405) + (xy 81.489507 112.222194) + (xy 81.506148 112.232888) + (xy 81.506393 112.232523) + (xy 81.511458 112.235907) + (xy 81.511462 112.23591) + (xy 81.685273 112.328814) + (xy 81.873868 112.386024) + (xy 82.07 112.405341) + (xy 82.266132 112.386024) + (xy 82.454727 112.328814) + (xy 82.628538 112.23591) + (xy 82.628544 112.235904) + (xy 82.633607 112.232523) + (xy 82.634703 112.234164) + (xy 82.690639 112.210405) + (xy 82.759507 112.222194) + (xy 82.776148 112.232888) + (xy 82.776393 112.232523) + (xy 82.781458 112.235907) + (xy 82.781462 112.23591) + (xy 82.955273 112.328814) + (xy 83.143868 112.386024) + (xy 83.34 112.405341) + (xy 83.536132 112.386024) + (xy 83.724727 112.328814) + (xy 83.898538 112.23591) + (xy 83.898544 112.235904) + (xy 83.903607 112.232523) + (xy 83.904703 112.234164) + (xy 83.960639 112.210405) + (xy 84.029507 112.222194) + (xy 84.046148 112.232888) + (xy 84.046393 112.232523) + (xy 84.051458 112.235907) + (xy 84.051462 112.23591) + (xy 84.225273 112.328814) + (xy 84.271708 112.3429) + (xy 84.330146 112.381197) + (xy 84.358602 112.445009) + (xy 84.348042 112.514076) + (xy 84.33498 112.53587) + (xy 84.296203 112.587669) + (xy 84.296202 112.587671) + (xy 84.245908 112.722517) + (xy 84.239501 112.782116) + (xy 84.2395 112.782135) + (xy 84.2395 113.87787) + (xy 84.239501 113.877876) + (xy 84.245908 113.937483) + (xy 84.296202 114.072328) + (xy 84.296206 114.072335) + (xy 84.382452 114.187544) + (xy 84.382455 114.187547) + (xy 84.497664 114.273793) + (xy 84.497671 114.273797) + (xy 84.632517 114.324091) + (xy 84.632516 114.324091) + (xy 84.639444 114.324835) + (xy 84.692127 114.3305) + (xy 86.520008 114.330499) + (xy 86.587047 114.350184) + (xy 86.625001 114.388526) + (xy 86.690182 114.492259) + (xy 86.690184 114.492262) + (xy 86.768984 114.571062) + (xy 86.802469 114.632385) + (xy 86.797485 114.702077) + (xy 86.768968 114.74644) + (xy 86.766192 114.749215) + (xy 86.753952 114.759021) + (xy 86.754134 114.759241) + (xy 86.748122 114.764214) + (xy 86.702098 114.813223) + (xy 86.699391 114.816016) + (xy 86.679889 114.835517) + (xy 86.679875 114.835534) + (xy 86.677407 114.838715) + (xy 86.669843 114.84757) + (xy 86.639937 114.879418) + (xy 86.639936 114.87942) + (xy 86.630284 114.896976) + (xy 86.619608 114.913229) + (xy 86.602627 114.935123) + (xy 86.545986 114.976032) + (xy 86.47622 114.979825) + (xy 86.444426 114.965997) + (xy 86.443911 114.966961) + (xy 86.264733 114.871188) + (xy 86.264727 114.871186) + (xy 86.131722 114.830839) + (xy 86.076129 114.813975) + (xy 85.88 114.794659) + (xy 85.68387 114.813975) + (xy 85.495266 114.871188) + (xy 85.321467 114.964086) + (xy 85.316399 114.967473) + (xy 85.315305 114.965836) + (xy 85.259337 114.989596) + (xy 85.190471 114.977795) + (xy 85.173843 114.967109) + (xy 85.173601 114.967473) + (xy 85.168532 114.964086) + (xy 84.994733 114.871188) + (xy 84.994727 114.871186) + (xy 84.861722 114.830839) + (xy 84.806129 114.813975) + (xy 84.61 114.794659) + (xy 84.41387 114.813975) + (xy 84.225266 114.871188) + (xy 84.051467 114.964086) + (xy 84.046399 114.967473) + (xy 84.045305 114.965836) + (xy 83.989337 114.989596) + (xy 83.920471 114.977795) + (xy 83.903843 114.967109) + (xy 83.903601 114.967473) + (xy 83.898532 114.964086) + (xy 83.724733 114.871188) + (xy 83.724727 114.871186) + (xy 83.591722 114.830839) + (xy 83.536129 114.813975) + (xy 83.34 114.794659) + (xy 83.14387 114.813975) + (xy 82.955266 114.871188) + (xy 82.781467 114.964086) + (xy 82.776399 114.967473) + (xy 82.775305 114.965836) + (xy 82.719337 114.989596) + (xy 82.650471 114.977795) + (xy 82.633843 114.967109) + (xy 82.633601 114.967473) + (xy 82.628532 114.964086) + (xy 82.454733 114.871188) + (xy 82.454727 114.871186) + (xy 82.321722 114.830839) + (xy 82.266129 114.813975) + (xy 82.07 114.794659) + (xy 81.87387 114.813975) + (xy 81.685266 114.871188) + (xy 81.511467 114.964086) + (xy 81.506399 114.967473) + (xy 81.505305 114.965836) + (xy 81.449337 114.989596) + (xy 81.380471 114.977795) + (xy 81.363843 114.967109) + (xy 81.363601 114.967473) + (xy 81.358532 114.964086) + (xy 81.184733 114.871188) + (xy 81.184727 114.871186) + (xy 81.051722 114.830839) + (xy 80.996129 114.813975) + (xy 80.8 114.794659) + (xy 80.60387 114.813975) + (xy 80.415266 114.871188) + (xy 80.241467 114.964086) + (xy 80.236399 114.967473) + (xy 80.235386 114.965958) + (xy 80.178936 114.98992) + (xy 80.110071 114.978115) + (xy 80.093574 114.967511) + (xy 80.093322 114.96789) + (xy 80.088253 114.964503) + (xy 79.914541 114.871652) + (xy 79.78 114.830839) + (xy 79.78 115.551061) + (xy 79.698885 115.487928) + (xy 79.588405 115.45) + (xy 79.500995 115.45) + (xy 79.414784 115.464386) + (xy 79.312053 115.519981) + (xy 79.28 115.554799) + (xy 79.28 114.830839) + (xy 79.279999 114.830839) + (xy 79.145458 114.871652) + (xy 78.971742 114.964505) + (xy 78.966673 114.967893) + (xy 78.965556 114.966221) + (xy 78.909715 114.989921) + (xy 78.840851 114.978111) + (xy 78.823811 114.967158) + (xy 78.823601 114.967473) + (xy 78.818532 114.964086) + (xy 78.644733 114.871188) + (xy 78.644727 114.871186) + (xy 78.511722 114.830839) + (xy 78.456129 114.813975) + (xy 78.26 114.794659) + (xy 78.06387 114.813975) + (xy 77.875266 114.871188) + (xy 77.701467 114.964086) + (xy 77.696399 114.967473) + (xy 77.695305 114.965836) + (xy 77.639337 114.989596) + (xy 77.570471 114.977795) + (xy 77.553843 114.967109) + (xy 77.553601 114.967473) + (xy 77.548532 114.964086) + (xy 77.374733 114.871188) + (xy 77.374727 114.871186) + (xy 77.241722 114.830839) + (xy 77.186129 114.813975) + (xy 76.99 114.794659) + (xy 76.79387 114.813975) + (xy 76.605266 114.871188) + (xy 76.431467 114.964086) + (xy 76.426399 114.967473) + (xy 76.425305 114.965836) + (xy 76.369337 114.989596) + (xy 76.300471 114.977795) + (xy 76.283843 114.967109) + (xy 76.283601 114.967473) + (xy 76.278532 114.964086) + (xy 76.104733 114.871188) + (xy 76.104727 114.871186) + (xy 75.971722 114.830839) + (xy 75.916129 114.813975) + (xy 75.72 114.794659) + (xy 75.52387 114.813975) + (xy 75.335266 114.871188) + (xy 75.161467 114.964086) + (xy 75.16146 114.96409) + (xy 75.009116 115.089116) + (xy 74.88409 115.24146) + (xy 74.884086 115.241467) + (xy 74.791188 115.415266) + (xy 74.733975 115.60387) + (xy 74.714659 115.8) + (xy 74.733975 115.996129) + (xy 74.791188 116.184733) + (xy 74.884086 116.358532) + (xy 74.88409 116.358539) + (xy 75.009116 116.510883) + (xy 75.16146 116.635909) + (xy 75.161467 116.635913) + (xy 75.335266 116.728811) + (xy 75.335269 116.728811) + (xy 75.335273 116.728814) + (xy 75.523868 116.786024) + (xy 75.72 116.805341) + (xy 75.916132 116.786024) + (xy 76.104727 116.728814) + (xy 76.278538 116.63591) + (xy 76.278544 116.635904) + (xy 76.283607 116.632523) + (xy 76.284703 116.634164) + (xy 76.340639 116.610405) + (xy 76.409507 116.622194) + (xy 76.426148 116.632888) + (xy 76.426393 116.632523) + (xy 76.431458 116.635907) + (xy 76.431462 116.63591) + (xy 76.605273 116.728814) + (xy 76.793868 116.786024) + (xy 76.99 116.805341) + (xy 77.186132 116.786024) + (xy 77.374727 116.728814) + (xy 77.548538 116.63591) + (xy 77.548544 116.635904) + (xy 77.553607 116.632523) + (xy 77.554703 116.634164) + (xy 77.610639 116.610405) + (xy 77.679507 116.622194) + (xy 77.696148 116.632888) + (xy 77.696393 116.632523) + (xy 77.701458 116.635907) + (xy 77.701462 116.63591) + (xy 77.875273 116.728814) + (xy 78.063868 116.786024) + (xy 78.26 116.805341) + (xy 78.456132 116.786024) + (xy 78.644727 116.728814) + (xy 78.818538 116.63591) + (xy 78.818544 116.635904) + (xy 78.823607 116.632523) + (xy 78.824624 116.634045) + (xy 78.881021 116.610084) + (xy 78.94989 116.621866) + (xy 78.966424 116.632489) + (xy 78.966678 116.63211) + (xy 78.971738 116.635491) + (xy 79.145465 116.728349) + (xy 79.28 116.769159) + (xy 79.28 116.048938) + (xy 79.361115 116.112072) + (xy 79.471595 116.15) + (xy 79.559005 116.15) + (xy 79.645216 116.135614) + (xy 79.747947 116.080019) + (xy 79.78 116.0452) + (xy 79.78 116.769159) + (xy 79.914534 116.728349) + (xy 80.088259 116.635492) + (xy 80.09332 116.632111) + (xy 80.094444 116.633793) + (xy 80.150203 116.610086) + (xy 80.219075 116.621851) + (xy 80.236186 116.632843) + (xy 80.236399 116.632526) + (xy 80.241457 116.635906) + (xy 80.241462 116.63591) + (xy 80.415273 116.728814) + (xy 80.603868 116.786024) + (xy 80.8 116.805341) + (xy 80.996132 116.786024) + (xy 81.184727 116.728814) + (xy 81.358538 116.63591) + (xy 81.358544 116.635904) + (xy 81.363607 116.632523) + (xy 81.364703 116.634164) + (xy 81.420639 116.610405) + (xy 81.489507 116.622194) + (xy 81.506148 116.632888) + (xy 81.506393 116.632523) + (xy 81.511458 116.635907) + (xy 81.511462 116.63591) + (xy 81.685273 116.728814) + (xy 81.873868 116.786024) + (xy 82.07 116.805341) + (xy 82.266132 116.786024) + (xy 82.454727 116.728814) + (xy 82.628538 116.63591) + (xy 82.628544 116.635904) + (xy 82.633607 116.632523) + (xy 82.634703 116.634164) + (xy 82.690639 116.610405) + (xy 82.759507 116.622194) + (xy 82.776148 116.632888) + (xy 82.776393 116.632523) + (xy 82.781458 116.635907) + (xy 82.781462 116.63591) + (xy 82.955273 116.728814) + (xy 83.143868 116.786024) + (xy 83.34 116.805341) + (xy 83.377205 116.801676) + (xy 83.445848 116.814694) + (xy 83.496559 116.862758) + (xy 83.513235 116.930609) + (xy 83.512578 116.938962) + (xy 83.494435 117.099995) + (xy 83.494435 117.100003) + (xy 83.51463 117.279249) + (xy 83.514631 117.279254) + (xy 83.574211 117.449523) + (xy 83.625499 117.531146) + (xy 83.670184 117.602262) + (xy 83.797738 117.729816) + (xy 83.950478 117.825789) + (xy 84.120745 117.885368) + (xy 84.189384 117.893101) + (xy 84.253796 117.920166) + (xy 84.293352 117.97776) + (xy 84.2995 118.016317) + (xy 84.2995 118.047868) + (xy 84.299501 118.047876) + (xy 84.305908 118.107482) + (xy 84.313251 118.127169) + (xy 84.318234 118.19686) + (xy 84.284748 118.258183) + (xy 84.223424 118.291667) + (xy 84.197068 118.2945) + (xy 76.676143 118.2945) + (xy 76.609104 118.274815) + (xy 76.60537 118.272137) + (xy 76.449523 118.174211) + (xy 76.279254 118.114631) + (xy 76.279249 118.11463) + (xy 76.100004 118.094435) + (xy 76.099996 118.094435) + (xy 75.92075 118.11463) + (xy 75.920745 118.114631) + (xy 75.750476 118.174211) + (xy 75.597737 118.270184) + (xy 75.470184 118.397737) + (xy 75.374211 118.550476) + (xy 75.314631 118.720745) + (xy 75.31463 118.72075) + (xy 75.294435 118.899996) + (xy 75.294435 118.900003) + (xy 75.31463 119.079249) + (xy 75.314631 119.079254) + (xy 75.374211 119.249523) + (xy 75.386778 119.269523) + (xy 75.470184 119.402262) + (xy 75.597738 119.529816) + (xy 75.652947 119.564506) + (xy 75.70872 119.599551) + (xy 75.750478 119.625789) + (xy 75.807632 119.645788) + (xy 75.920745 119.685368) + (xy 75.92075 119.685369) + (xy 76.099996 119.705565) + (xy 76.1 119.705565) + (xy 76.100004 119.705565) + (xy 76.279249 119.685369) + (xy 76.279252 119.685368) + (xy 76.279255 119.685368) + (xy 76.449522 119.625789) + (xy 76.547053 119.564505) + (xy 76.613025 119.5455) + (xy 88.185145 119.5455) + (xy 88.251117 119.564506) + (xy 88.348646 119.625788) + (xy 88.380478 119.645789) + (xy 88.493591 119.685369) + (xy 88.550745 119.705368) + (xy 88.55075 119.705369) + (xy 88.729996 119.725565) + (xy 88.73 119.725565) + (xy 88.730004 119.725565) + (xy 88.909249 119.705369) + (xy 88.909252 119.705368) + (xy 88.909255 119.705368) + (xy 89.079522 119.645789) + (xy 89.232262 119.549816) + (xy 89.359816 119.422262) + (xy 89.455789 119.269522) + (xy 89.515368 119.099255) + (xy 89.515853 119.094952) + (xy 89.535565 118.920003) + (xy 89.535565 118.919996) + (xy 89.515369 118.74075) + (xy 89.515368 118.740745) + (xy 89.487814 118.662) + (xy 89.455789 118.570478) + (xy 89.359816 118.417738) + (xy 89.232262 118.290184) + (xy 89.176463 118.255123) + (xy 89.130173 118.202789) + (xy 89.119525 118.133736) + (xy 89.125184 118.11006) + (xy 89.125369 118.109251) + (xy 89.145565 117.930003) + (xy 89.145565 117.929996) + (xy 89.125369 117.75075) + (xy 89.125368 117.750745) + (xy 89.118044 117.729815) + (xy 89.065789 117.580478) + (xy 89.064177 117.577913) + (xy 88.984506 117.451117) + (xy 88.9655 117.385145) + (xy 88.9655 116.903304) + (xy 88.985185 116.836265) + (xy 89.037989 116.79051) + (xy 89.046168 116.787122) + (xy 89.162326 116.743798) + (xy 89.162326 116.743797) + (xy 89.162331 116.743796) + (xy 89.277546 116.657546) + (xy 89.363796 116.542331) + (xy 89.414091 116.407483) + (xy 89.4205 116.347873) + (xy 89.420499 115.252128) + (xy 89.414091 115.192517) + (xy 89.375525 115.089117) + (xy 89.363797 115.057671) + (xy 89.363793 115.057664) + (xy 89.277547 114.942455) + (xy 89.277544 114.942452) + (xy 89.162335 114.856206) + (xy 89.162328 114.856202) + (xy 89.027482 114.805908) + (xy 89.027483 114.805908) + (xy 88.967883 114.799501) + (xy 88.967881 114.7995) + (xy 88.967873 114.7995) + (xy 88.967865 114.7995) + (xy 88.754173 114.7995) + (xy 88.687134 114.779815) + (xy 88.641379 114.727011) + (xy 88.631435 114.657853) + (xy 88.640371 114.626255) + (xy 88.642673 114.620936) + (xy 88.660019 114.58085) + (xy 88.665157 114.570362) + (xy 88.686196 114.532093) + (xy 88.686197 114.532092) + (xy 88.691177 114.512691) + (xy 88.697478 114.494288) + (xy 88.705438 114.475896) + (xy 88.712272 114.432741) + (xy 88.714635 114.421331) + (xy 88.7255 114.379019) + (xy 88.7255 114.358983) + (xy 88.727027 114.339582) + (xy 88.727037 114.339522) + (xy 88.73016 114.319804) + (xy 88.72605 114.276324) + (xy 88.7255 114.264655) + (xy 88.7255 113.2715) + (xy 88.745185 113.204461) + (xy 88.797989 113.158706) + (xy 88.8495 113.1475) + (xy 90.485812 113.1475) + (xy 90.552851 113.167185) + (xy 90.587387 113.200377) + (xy 90.699954 113.361141) + (xy 90.860858 113.522045) + (xy 90.860861 113.522047) + (xy 91.047266 113.652568) + (xy 91.105275 113.679618) + (xy 91.157714 113.725791) + (xy 91.176866 113.792984) + (xy 91.15665 113.859865) + (xy 91.105275 113.904382) + (xy 91.047267 113.931431) + (xy 91.047265 113.931432) + (xy 90.860858 114.061954) + (xy 90.699954 114.222858) + (xy 90.569432 114.409265) + (xy 90.569431 114.409267) + (xy 90.473261 114.615502) + (xy 90.473258 114.615511) + (xy 90.414366 114.835302) + (xy 90.414364 114.835313) + (xy 90.394532 115.061998) + (xy 90.394532 115.062001) + (xy 90.414364 115.288686) + (xy 90.414366 115.288697) + (xy 90.473258 115.508488) + (xy 90.473261 115.508497) + (xy 90.569431 115.714732) + (xy 90.569432 115.714734) + (xy 90.699954 115.901141) + (xy 90.809169 116.010356) + (xy 90.842654 116.071679) + (xy 90.83767 116.141371) + (xy 90.795798 116.197304) + (xy 90.730334 116.221721) + (xy 90.686128 116.215824) + (xy 90.686047 116.216182) + (xy 90.682167 116.215296) + (xy 90.680536 116.215079) + (xy 90.679264 116.214634) + (xy 90.679249 116.21463) + (xy 90.500004 116.194435) + (xy 90.499996 116.194435) + (xy 90.32075 116.21463) + (xy 90.320745 116.214631) + (xy 90.150476 116.274211) + (xy 89.997737 116.370184) + (xy 89.870184 116.497737) + (xy 89.774211 116.650476) + (xy 89.714631 116.820745) + (xy 89.71463 116.82075) + (xy 89.694435 116.999996) + (xy 89.694435 117.000003) + (xy 89.71463 117.179249) + (xy 89.714631 117.179254) + (xy 89.774211 117.349523) + (xy 89.845396 117.462812) + (xy 89.870184 117.502262) + (xy 89.997738 117.629816) + (xy 90.150478 117.725789) + (xy 90.307413 117.780703) + (xy 90.320745 117.785368) + (xy 90.32075 117.785369) + (xy 90.499996 117.805565) + (xy 90.5 117.805565) + (xy 90.500004 117.805565) + (xy 90.679249 117.785369) + (xy 90.679252 117.785368) + (xy 90.679255 117.785368) + (xy 90.849522 117.725789) + (xy 91.002262 117.629816) + (xy 91.020259 117.611819) + (xy 91.081582 117.578334) + (xy 91.10794 117.5755) + (xy 91.849241 117.5755) + (xy 91.91628 117.595185) + (xy 91.962035 117.647989) + (xy 91.971979 117.717147) + (xy 91.942954 117.780703) + (xy 91.936922 117.787181) + (xy 91.925505 117.798597) + (xy 91.789965 117.992169) + (xy 91.789964 117.992171) + (xy 91.707041 118.17) + (xy 91.691752 118.202789) + (xy 91.690098 118.206335) + (xy 91.690094 118.206344) + (xy 91.628938 118.434586) + (xy 91.628936 118.434596) + (xy 91.608341 118.669999) + (xy 91.608341 118.67) + (xy 91.628936 118.905403) + (xy 91.628938 118.905413) + (xy 91.644867 118.964861) + (xy 91.643204 119.034711) + (xy 91.612773 119.084635) + (xy 88.859228 121.838181) + (xy 88.797905 121.871666) + (xy 88.771547 121.8745) + (xy 88.494855 121.8745) + (xy 88.428883 121.855494) + (xy 88.299523 121.774211) + (xy 88.129254 121.714631) + (xy 88.129249 121.71463) + (xy 87.950004 121.694435) + (xy 87.949996 121.694435) + (xy 87.77075 121.71463) + (xy 87.770745 121.714631) + (xy 87.600476 121.774211) + (xy 87.447737 121.870184) + (xy 87.320184 121.997737) + (xy 87.224211 122.150476) + (xy 87.164631 122.320745) + (xy 87.16463 122.32075) + (xy 87.144435 122.499996) + (xy 87.144435 122.500003) + (xy 87.16463 122.679249) + (xy 87.164631 122.679254) + (xy 87.224211 122.849523) + (xy 87.30077 122.971365) + (xy 87.320184 123.002262) + (xy 87.447738 123.129816) + (xy 87.600478 123.225789) + (xy 87.770745 123.285368) + (xy 87.77075 123.285369) + (xy 87.949996 123.305565) + (xy 87.95 123.305565) + (xy 87.950004 123.305565) + (xy 88.129249 123.285369) + (xy 88.129252 123.285368) + (xy 88.129255 123.285368) + (xy 88.299522 123.225789) + (xy 88.428883 123.144505) + (xy 88.494855 123.1255) + (xy 88.999257 123.1255) + (xy 89.014877 123.127224) + (xy 89.014904 123.126939) + (xy 89.02266 123.127671) + (xy 89.022667 123.127673) + (xy 89.089873 123.125561) + (xy 89.093768 123.1255) + (xy 89.121346 123.1255) + (xy 89.12135 123.1255) + (xy 89.125324 123.124997) + (xy 89.136963 123.12408) + (xy 89.180627 123.122709) + (xy 89.199869 123.117117) + (xy 89.218912 123.113174) + (xy 89.238792 123.110664) + (xy 89.279401 123.094585) + (xy 89.290444 123.090803) + (xy 89.33239 123.078618) + (xy 89.349629 123.068422) + (xy 89.367103 123.059862) + (xy 89.385727 123.052488) + (xy 89.385727 123.052487) + (xy 89.385732 123.052486) + (xy 89.421083 123.0268) + (xy 89.430814 123.020408) + (xy 89.46842 122.99817) + (xy 89.482589 122.983999) + (xy 89.497379 122.971368) + (xy 89.513587 122.959594) + (xy 89.541438 122.925926) + (xy 89.549279 122.917309) + (xy 91.478343 120.988246) + (xy 91.539663 120.954763) + (xy 91.609355 120.959747) + (xy 91.609697 120.96) + (xy 92.530314 120.96) + (xy 92.504507 121.000156) + (xy 92.464 121.138111) + (xy 92.464 121.281889) + (xy 92.504507 121.419844) + (xy 92.530314 121.46) + (xy 91.633364 121.46) + (xy 91.690567 121.673486) + (xy 91.69057 121.673492) + (xy 91.790399 121.887578) + (xy 91.925894 122.081082) + (xy 92.092917 122.248105) + (xy 92.286421 122.3836) + (xy 92.500507 122.483429) + (xy 92.500516 122.483433) + (xy 92.714 122.540634) + (xy 92.714 121.645501) + (xy 92.821685 121.69468) + (xy 92.928237 121.71) + (xy 92.999763 121.71) + (xy 93.106315 121.69468) + (xy 93.214 121.645501) + (xy 93.214 122.540633) + (xy 93.427483 122.483433) + (xy 93.427492 122.483429) + (xy 93.641578 122.3836) + (xy 93.835082 122.248105) + (xy 94.002105 122.081082) + (xy 94.132119 121.895405) + (xy 94.186696 121.851781) + (xy 94.256195 121.844588) + (xy 94.318549 121.87611) + (xy 94.335269 121.895405) + (xy 94.465505 122.081401) + (xy 94.632599 122.248495) + (xy 94.735783 122.320745) + (xy 94.826168 122.384034) + (xy 94.826174 122.384037) + (xy 94.857243 122.398525) + (xy 94.909683 122.444697) + (xy 94.928835 122.51189) + (xy 94.90862 122.578771) + (xy 94.89252 122.598588) + (xy 94.052929 123.438181) + (xy 93.991606 123.471666) + (xy 93.965248 123.4745) + (xy 91.382743 123.4745) + (xy 91.367122 123.472775) + (xy 91.367095 123.473061) + (xy 91.359333 123.472326) + (xy 91.292113 123.474439) + (xy 91.288219 123.4745) + (xy 91.26065 123.4745) + (xy 91.256673 123.475002) + (xy 91.245042 123.475917) + (xy 91.201374 123.477289) + (xy 91.201368 123.47729) + (xy 91.182126 123.48288) + (xy 91.163087 123.486823) + (xy 91.143217 123.489334) + (xy 91.143203 123.489337) + (xy 91.102598 123.505413) + (xy 91.091554 123.509194) + (xy 91.049614 123.521379) + (xy 91.04961 123.521381) + (xy 91.032366 123.531579) + (xy 91.014905 123.540133) + (xy 90.996274 123.54751) + (xy 90.996262 123.547517) + (xy 90.960933 123.573185) + (xy 90.951173 123.579596) + (xy 90.91358 123.601829) + (xy 90.899414 123.615995) + (xy 90.884624 123.628627) + (xy 90.868414 123.640404) + (xy 90.868411 123.640407) + (xy 90.840573 123.674058) + (xy 90.832711 123.682697) + (xy 90.426211 124.089197) + (xy 90.413948 124.099022) + (xy 90.414131 124.099244) + (xy 90.40812 124.104216) + (xy 90.362097 124.153224) + (xy 90.35939 124.156017) + (xy 90.339889 124.175517) + (xy 90.339875 124.175534) + (xy 90.337407 124.178715) + (xy 90.329843 124.18757) + (xy 90.299937 124.219418) + (xy 90.299936 124.21942) + (xy 90.290284 124.236976) + (xy 90.27961 124.253226) + (xy 90.267329 124.269061) + (xy 90.267324 124.269068) + (xy 90.249975 124.309158) + (xy 90.244838 124.319644) + (xy 90.223803 124.357906) + (xy 90.218822 124.377307) + (xy 90.212521 124.39571) + (xy 90.204562 124.414102) + (xy 90.20456 124.414108) + (xy 90.200559 124.439373) + (xy 90.170629 124.502508) + (xy 90.121421 124.536155) + (xy 90.067666 124.556204) + (xy 90.067665 124.556205) + (xy 89.952455 124.642452) + (xy 89.952452 124.642455) + (xy 89.866206 124.757664) + (xy 89.866202 124.757671) + (xy 89.815908 124.892517) + (xy 89.809501 124.952116) + (xy 89.8095 124.952135) + (xy 89.8095 127.04787) + (xy 89.809501 127.047876) + (xy 89.815908 127.107483) + (xy 89.866202 127.242328) + (xy 89.866206 127.242335) + (xy 89.952452 127.357544) + (xy 89.952455 127.357547) + (xy 90.067664 127.443793) + (xy 90.067671 127.443797) + (xy 90.202517 127.494091) + (xy 90.202516 127.494091) + (xy 90.209444 127.494835) + (xy 90.262127 127.5005) + (xy 91.357872 127.500499) + (xy 91.417483 127.494091) + (xy 91.552331 127.443796) + (xy 91.555686 127.441284) + (xy 91.559614 127.439818) + (xy 91.560112 127.439547) + (xy 91.560151 127.439618) + (xy 91.621146 127.416864) + (xy 91.68942 127.431712) + (xy 91.704307 127.441279) + (xy 91.707669 127.443796) + (xy 91.70767 127.443796) + (xy 91.707671 127.443797) + (xy 91.842517 127.494091) + (xy 91.842516 127.494091) + (xy 91.849444 127.494835) + (xy 91.902127 127.5005) + (xy 92.997872 127.500499) + (xy 93.057483 127.494091) + (xy 93.14991 127.459618) + (xy 93.192329 127.443797) + (xy 93.192329 127.443796) + (xy 93.192331 127.443796) + (xy 93.225689 127.418823) + (xy 93.291151 127.394406) + (xy 93.359425 127.409257) + (xy 93.374305 127.41882) + (xy 93.407669 127.443796) + (xy 93.40767 127.443796) + (xy 93.40767 127.443797) + (xy 93.542517 127.494091) + (xy 93.542516 127.494091) + (xy 93.549444 127.494835) + (xy 93.602127 127.5005) + (xy 94.697872 127.500499) + (xy 94.757483 127.494091) + (xy 94.892331 127.443796) + (xy 95.007546 127.357546) + (xy 95.093796 127.242331) + (xy 95.144091 127.107483) + (xy 95.1505 127.047873) + (xy 95.150499 126.072) + (xy 97.683474 126.072) + (xy 97.703547 126.327064) + (xy 97.703547 126.327067) + (xy 97.703548 126.32707) + (xy 97.755801 126.544715) + (xy 97.763279 126.575864) + (xy 97.861188 126.812239) + (xy 97.86119 126.812242) + (xy 97.994875 127.030396) + (xy 97.994878 127.030401) + (xy 98.010379 127.04855) + (xy 98.161044 127.224956) + (xy 98.285579 127.331319) + (xy 98.355598 127.391121) + (xy 98.3556 127.391122) + (xy 98.355601 127.391123) + (xy 98.457432 127.453525) + (xy 98.573757 127.524809) + (xy 98.57376 127.524811) + (xy 98.810135 127.62272) + (xy 98.81014 127.622722) + (xy 99.05893 127.682452) + (xy 99.250137 127.6975) + (xy 99.250145 127.6975) + (xy 99.377855 127.6975) + (xy 99.377863 127.6975) + (xy 99.56907 127.682452) + (xy 99.81786 127.622722) + (xy 99.936051 127.573765) + (xy 100.054239 127.524811) + (xy 100.05424 127.52481) + (xy 100.054243 127.524809) + (xy 100.272399 127.391123) + (xy 100.466956 127.224956) + (xy 100.633123 127.030399) + (xy 100.766809 126.812243) + (xy 100.773283 126.796615) + (xy 100.854847 126.5997) + (xy 100.864722 126.57586) + (xy 100.924452 126.32707) + (xy 100.944526 126.072) + (xy 100.924452 125.81693) + (xy 100.864722 125.56814) + (xy 100.856285 125.547771) + (xy 100.766811 125.33176) + (xy 100.766809 125.331757) + (xy 100.633124 125.113603) + (xy 100.633121 125.113598) + (xy 100.495211 124.952127) + (xy 100.466956 124.919044) + (xy 100.360591 124.8282) + (xy 100.272401 124.752878) + (xy 100.272396 124.752875) + (xy 100.054242 124.61919) + (xy 100.054239 124.619188) + (xy 99.817864 124.521279) + (xy 99.81786 124.521278) + (xy 99.56907 124.461548) + (xy 99.569068 124.461547) + (xy 99.569065 124.461547) + (xy 99.377868 124.4465) + (xy 99.377863 124.4465) + (xy 99.250137 124.4465) + (xy 99.250131 124.4465) + (xy 99.058934 124.461547) + (xy 98.810135 124.521279) + (xy 98.57376 124.619188) + (xy 98.573757 124.61919) + (xy 98.355603 124.752875) + (xy 98.355598 124.752878) + (xy 98.161044 124.919044) + (xy 97.994878 125.113598) + (xy 97.994875 125.113603) + (xy 97.86119 125.331757) + (xy 97.861188 125.33176) + (xy 97.763279 125.568135) + (xy 97.703547 125.816935) + (xy 97.683474 126.072) + (xy 95.150499 126.072) + (xy 95.150499 125.635451) + (xy 95.170184 125.568413) + (xy 95.186818 125.547771) + (xy 97.136772 123.597819) + (xy 97.198095 123.564334) + (xy 97.224453 123.5615) + (xy 98.567653 123.5615) + (xy 98.583273 123.563224) + (xy 98.5833 123.562939) + (xy 98.591056 123.563671) + (xy 98.591063 123.563673) + (xy 98.658269 123.561561) + (xy 98.662164 123.5615) + (xy 98.689742 123.5615) + (xy 98.689746 123.5615) + (xy 98.69372 123.560997) + (xy 98.705359 123.56008) + (xy 98.749023 123.558709) + (xy 98.768265 123.553117) + (xy 98.787308 123.549174) + (xy 98.807188 123.546664) + (xy 98.847797 123.530585) + (xy 98.85884 123.526803) + (xy 98.900786 123.514618) + (xy 98.918025 123.504422) + (xy 98.935499 123.495862) + (xy 98.954123 123.488488) + (xy 98.954123 123.488487) + (xy 98.954128 123.488486) + (xy 98.989479 123.4628) + (xy 98.99921 123.456408) + (xy 99.036816 123.43417) + (xy 99.050985 123.419999) + (xy 99.065775 123.407368) + (xy 99.081983 123.395594) + (xy 99.109834 123.361926) + (xy 99.117675 123.353309) + (xy 99.973522 122.497463) + (xy 100.034843 122.46398) + (xy 100.104535 122.468964) + (xy 100.113592 122.472757) + (xy 100.120337 122.475903) + (xy 100.120343 122.475904) + (xy 100.120344 122.475905) + (xy 100.175285 122.490626) + (xy 100.348592 122.537063) + (xy 100.536918 122.553539) + (xy 100.583999 122.557659) + (xy 100.584 122.557659) + (xy 100.584001 122.557659) + (xy 100.623234 122.554226) + (xy 100.819408 122.537063) + (xy 101.047663 122.475903) + (xy 101.26183 122.376035) + (xy 101.455401 122.240495) + (xy 101.622495 122.073401) + (xy 101.758035 121.87983) + (xy 101.857903 121.665663) + (xy 101.919063 121.437408) + (xy 101.939659 121.202) + (xy 101.919063 120.966592) + (xy 101.857903 120.738337) + (xy 101.758035 120.524171) + (xy 101.757533 120.523453) + (xy 101.622494 120.330597) + (xy 101.455402 120.163506) + (xy 101.455396 120.163501) + (xy 101.269842 120.033575) + (xy 101.226217 119.978998) + (xy 101.219023 119.9095) + (xy 101.250546 119.847145) + (xy 101.269842 119.830425) + (xy 101.419597 119.725565) + (xy 101.455401 119.700495) + (xy 101.622495 119.533401) + (xy 101.758035 119.33983) + (xy 101.857903 119.125663) + (xy 101.919063 118.897408) + (xy 101.939659 118.662) + (xy 101.919063 118.426592) + (xy 101.869691 118.242331) + (xy 101.857905 118.198344) + (xy 101.857904 118.198343) + (xy 101.857903 118.198337) + (xy 101.758035 117.984171) + (xy 101.720107 117.930003) + (xy 101.622494 117.790597) + (xy 101.455402 117.623506) + (xy 101.455396 117.623501) + (xy 101.269842 117.493575) + (xy 101.226217 117.438998) + (xy 101.219023 117.3695) + (xy 101.250546 117.307145) + (xy 101.269842 117.290425) + (xy 101.32886 117.2491) + (xy 101.455401 117.160495) + (xy 101.622495 116.993401) + (xy 101.758035 116.79983) + (xy 101.857903 116.585663) + (xy 101.919063 116.357408) + (xy 101.939659 116.122) + (xy 101.919063 115.886592) + (xy 101.857903 115.658337) + (xy 101.758035 115.444171) + (xy 101.752425 115.436158) + (xy 101.622494 115.250597) + (xy 101.455402 115.083506) + (xy 101.455401 115.083505) + (xy 101.269405 114.953269) + (xy 101.225781 114.898692) + (xy 101.218588 114.829193) + (xy 101.25011 114.766839) + (xy 101.269405 114.750119) + (xy 101.455082 114.620105) + (xy 101.622105 114.453082) + (xy 101.7576 114.259578) + (xy 101.857429 114.045492) + (xy 101.857432 114.045486) + (xy 101.914636 113.832) + (xy 101.017686 113.832) + (xy 101.043493 113.791844) + (xy 101.084 113.653889) + (xy 101.084 113.510111) + (xy 101.043493 113.372156) + (xy 101.017686 113.332) + (xy 101.914636 113.332) + (xy 101.914635 113.331999) + (xy 101.857432 113.118513) + (xy 101.857429 113.118507) + (xy 101.7576 112.904422) + (xy 101.757599 112.90442) + (xy 101.622113 112.710926) + (xy 101.622108 112.71092) + (xy 101.455078 112.54389) + (xy 101.269405 112.413879) + (xy 101.22578 112.359302) + (xy 101.218588 112.289804) + (xy 101.25011 112.227449) + (xy 101.269406 112.21073) + (xy 101.311932 112.180953) + (xy 101.455401 112.080495) + (xy 101.622495 111.913401) + (xy 101.758035 111.71983) + (xy 101.857903 111.505663) + (xy 101.919063 111.277408) + (xy 101.939659 111.042) + (xy 101.919063 110.806592) + (xy 101.858975 110.582339) + (xy 101.857905 110.578344) + (xy 101.857904 110.578343) + (xy 101.857903 110.578337) + (xy 101.758035 110.364171) + (xy 101.752425 110.356158) + (xy 101.622494 110.170597) + (xy 101.455402 110.003506) + (xy 101.455401 110.003505) + (xy 101.287844 109.88618) + (xy 101.269405 109.873269) + (xy 101.225781 109.818692) + (xy 101.218588 109.749193) + (xy 101.25011 109.686839) + (xy 101.269405 109.670119) + (xy 101.455082 109.540105) + (xy 101.622105 109.373082) + (xy 101.7576 109.179578) + (xy 101.857429 108.965492) + (xy 101.857432 108.965486) + (xy 101.914636 108.752) + (xy 101.017686 108.752) + (xy 101.043493 108.711844) + (xy 101.084 108.573889) + (xy 101.084 108.430111) + (xy 101.043493 108.292156) + (xy 101.017686 108.252) + (xy 101.914636 108.252) + (xy 101.914635 108.251999) + (xy 101.857432 108.038513) + (xy 101.857429 108.038507) + (xy 101.7576 107.824422) + (xy 101.757599 107.82442) + (xy 101.622113 107.630926) + (xy 101.622108 107.63092) + (xy 101.455078 107.46389) + (xy 101.269405 107.333879) + (xy 101.22578 107.279302) + (xy 101.218588 107.209804) + (xy 101.25011 107.147449) + (xy 101.269406 107.13073) + (xy 101.327143 107.090302) + (xy 101.455401 107.000495) + (xy 101.622495 106.833401) + (xy 101.758035 106.63983) + (xy 101.857903 106.425663) + (xy 101.919063 106.197408) + (xy 101.939659 105.962) + (xy 101.919063 105.726592) + (xy 101.857903 105.498337) + (xy 101.758035 105.284171) + (xy 101.706269 105.21024) + (xy 101.622494 105.090597) + (xy 101.455402 104.923506) + (xy 101.455396 104.923501) + (xy 101.269842 104.793575) + (xy 101.226217 104.738998) + (xy 101.219023 104.6695) + (xy 101.250546 104.607145) + (xy 101.269842 104.590425) + (xy 101.449401 104.464696) + (xy 101.455401 104.460495) + (xy 101.622495 104.293401) + (xy 101.744811 104.118714) + (xy 101.765517 104.102164) + (xy 101.765579 104.086799) + (xy 101.772026 104.069825) + (xy 101.857903 103.885663) + (xy 101.919063 103.657408) + (xy 101.939659 103.422) + (xy 101.919063 103.186592) + (xy 101.857903 102.958337) + (xy 101.758035 102.744171) + (xy 101.752731 102.736595) + (xy 101.622494 102.550597) + (xy 101.455402 102.383506) + (xy 101.455396 102.383501) + (xy 101.269842 102.253575) + (xy 101.226217 102.198998) + (xy 101.219023 102.1295) + (xy 101.250546 102.067145) + (xy 101.269842 102.050425) + (xy 101.321199 102.014464) + (xy 101.455401 101.920495) + (xy 101.622495 101.753401) + (xy 101.758035 101.55983) + (xy 101.857903 101.345663) + (xy 101.919063 101.117408) + (xy 101.939659 100.882) + (xy 101.919063 100.646592) + (xy 101.857903 100.418337) + (xy 101.758035 100.204171) + (xy 101.752425 100.196158) + (xy 101.622494 100.010597) + (xy 101.455402 99.843506) + (xy 101.455396 99.843501) + (xy 101.269842 99.713575) + (xy 101.226217 99.658998) + (xy 101.219023 99.5895) + (xy 101.250546 99.527145) + (xy 101.269842 99.510425) + (xy 101.373989 99.4375) + (xy 101.455401 99.380495) + (xy 101.622495 99.213401) + (xy 101.758035 99.01983) + (xy 101.857903 98.805663) + (xy 101.919063 98.577408) + (xy 101.939659 98.342) + (xy 101.938115 98.324358) + (xy 101.928138 98.210319) + (xy 101.919063 98.106592) + (xy 101.857903 97.878337) + (xy 101.758035 97.664171) + (xy 101.756229 97.661591) + (xy 101.622494 97.470597) + (xy 101.455402 97.303506) + (xy 101.455401 97.303505) + (xy 101.269405 97.173269) + (xy 101.225781 97.118692) + (xy 101.218588 97.049193) + (xy 101.25011 96.986839) + (xy 101.269405 96.970119) + (xy 101.455082 96.840105) + (xy 101.622105 96.673082) + (xy 101.7576 96.479578) + (xy 101.857429 96.265492) + (xy 101.857432 96.265486) + (xy 101.914636 96.052) + (xy 101.017686 96.052) + (xy 101.043493 96.011844) + (xy 101.084 95.873889) + (xy 101.084 95.730111) + (xy 101.043493 95.592156) + (xy 101.017686 95.552) + (xy 101.914636 95.552) + (xy 101.914635 95.551999) + (xy 101.857432 95.338513) + (xy 101.857429 95.338507) + (xy 101.7576 95.124422) + (xy 101.757599 95.12442) + (xy 101.622113 94.930926) + (xy 101.622108 94.93092) + (xy 101.455078 94.76389) + (xy 101.269405 94.633879) + (xy 101.22578 94.579302) + (xy 101.218588 94.509804) + (xy 101.25011 94.447449) + (xy 101.269406 94.43073) + (xy 101.279482 94.423675) + (xy 101.455401 94.300495) + (xy 101.622495 94.133401) + (xy 101.758035 93.93983) + (xy 101.857903 93.725663) + (xy 101.919063 93.497408) + (xy 101.939659 93.262) + (xy 101.919063 93.026592) + (xy 101.857903 92.798337) + (xy 101.758035 92.584171) + (xy 101.752425 92.576158) + (xy 101.622494 92.390597) + (xy 101.455402 92.223506) + (xy 101.455396 92.223501) + (xy 101.269842 92.093575) + (xy 101.226217 92.038998) + (xy 101.219023 91.9695) + (xy 101.250546 91.907145) + (xy 101.269842 91.890425) + (xy 101.292026 91.874891) + (xy 101.455401 91.760495) + (xy 101.622495 91.593401) + (xy 101.758035 91.39983) + (xy 101.857903 91.185663) + (xy 101.919063 90.957408) + (xy 101.939659 90.722) + (xy 101.919063 90.486592) + (xy 101.857903 90.258337) + (xy 101.758035 90.044171) + (xy 101.752425 90.036158) + (xy 101.622494 89.850597) + (xy 101.455402 89.683506) + (xy 101.455401 89.683505) + (xy 101.269405 89.553269) + (xy 101.225781 89.498692) + (xy 101.218588 89.429193) + (xy 101.25011 89.366839) + (xy 101.269405 89.350119) + (xy 101.455082 89.220105) + (xy 101.622105 89.053082) + (xy 101.7576 88.859578) + (xy 101.857429 88.645492) + (xy 101.857432 88.645486) + (xy 101.914636 88.432) + (xy 101.017686 88.432) + (xy 101.043493 88.391844) + (xy 101.084 88.253889) + (xy 101.084 88.110111) + (xy 101.043493 87.972156) + (xy 101.017686 87.932) + (xy 101.914636 87.932) + (xy 101.914635 87.931999) + (xy 101.857432 87.718513) + (xy 101.857429 87.718507) + (xy 101.7576 87.504422) + (xy 101.757599 87.50442) + (xy 101.622113 87.310926) + (xy 101.622108 87.31092) + (xy 101.455078 87.14389) + (xy 101.269405 87.013879) + (xy 101.22578 86.959302) + (xy 101.218588 86.889804) + (xy 101.25011 86.827449) + (xy 101.269406 86.81073) + (xy 101.269842 86.810425) + (xy 101.455401 86.680495) + (xy 101.622495 86.513401) + (xy 101.758035 86.31983) + (xy 101.857903 86.105663) + (xy 101.919063 85.877408) + (xy 101.939659 85.642) + (xy 101.919063 85.406592) + (xy 101.857903 85.178337) + (xy 101.758035 84.964171) + (xy 101.752425 84.956158) + (xy 101.622494 84.770597) + (xy 101.455402 84.603506) + (xy 101.455396 84.603501) + (xy 101.269842 84.473575) + (xy 101.226217 84.418998) + (xy 101.219023 84.3495) + (xy 101.250546 84.287145) + (xy 101.269842 84.270425) + (xy 101.323617 84.232771) + (xy 101.455401 84.140495) + (xy 101.622495 83.973401) + (xy 101.758035 83.77983) + (xy 101.857903 83.565663) + (xy 101.919063 83.337408) + (xy 101.939659 83.102) + (xy 101.919063 82.866592) + (xy 101.857903 82.638337) + (xy 101.758035 82.424171) + (xy 101.752731 82.416595) + (xy 101.622494 82.230597) + (xy 101.455402 82.063506) + (xy 101.455396 82.063501) + (xy 101.269842 81.933575) + (xy 101.226217 81.878998) + (xy 101.219023 81.8095) + (xy 101.250546 81.747145) + (xy 101.269842 81.730425) + (xy 101.337716 81.682899) + (xy 101.455401 81.600495) + (xy 101.622495 81.433401) + (xy 101.758035 81.23983) + (xy 101.857903 81.025663) + (xy 101.919063 80.797408) + (xy 101.939659 80.562) + (xy 101.919063 80.326592) + (xy 101.857903 80.098337) + (xy 101.758035 79.884171) + (xy 101.752425 79.876158) + (xy 101.622494 79.690597) + (xy 101.455402 79.523506) + (xy 101.455401 79.523505) + (xy 101.269405 79.393269) + (xy 101.225781 79.338692) + (xy 101.218588 79.269193) + (xy 101.25011 79.206839) + (xy 101.269405 79.190119) + (xy 101.455082 79.060105) + (xy 101.622105 78.893082) + (xy 101.7576 78.699578) + (xy 101.857429 78.485492) + (xy 101.857432 78.485486) + (xy 101.914636 78.272) + (xy 101.017686 78.272) + (xy 101.043493 78.231844) + (xy 101.084 78.093889) + (xy 101.084 77.950111) + (xy 101.043493 77.812156) + (xy 101.017686 77.772) + (xy 101.914636 77.772) + (xy 101.914635 77.771999) + (xy 101.857432 77.558513) + (xy 101.857429 77.558507) + (xy 101.7576 77.344422) + (xy 101.757599 77.34442) + (xy 101.622113 77.150926) + (xy 101.622108 77.15092) + (xy 101.455078 76.98389) + (xy 101.269405 76.853879) + (xy 101.22578 76.799302) + (xy 101.218588 76.729804) + (xy 101.25011 76.667449) + (xy 101.269406 76.65073) + (xy 101.33718 76.603274) + (xy 101.455401 76.520495) + (xy 101.622495 76.353401) + (xy 101.758035 76.15983) + (xy 101.857903 75.945663) + (xy 101.919063 75.717408) + (xy 101.939659 75.482) + (xy 101.919063 75.246592) + (xy 101.857903 75.018337) + (xy 101.758035 74.804171) + (xy 101.752425 74.796158) + (xy 101.622494 74.610597) + (xy 101.455404 74.443507) + (xy 101.387375 74.395872) + (xy 101.343751 74.341294) + (xy 101.3345 74.294298) + (xy 101.3345 74.1297) + (xy 101.354185 74.062661) + (xy 101.387375 74.028126) + (xy 101.455401 73.980495) + (xy 101.622495 73.813401) + (xy 101.758035 73.61983) + (xy 101.857903 73.405663) + (xy 101.919063 73.177408) + (xy 101.939659 72.942) + (xy 101.919063 72.706592) + (xy 101.857903 72.478337) + (xy 101.758035 72.264171) + (xy 101.747001 72.248412) + (xy 101.622494 72.070597) + (xy 101.455404 71.903507) + (xy 101.387375 71.855872) + (xy 101.343751 71.801294) + (xy 101.3345 71.754298) + (xy 101.3345 71.447705) + (xy 101.335809 71.429735) + (xy 101.336129 71.427547) + (xy 101.339289 71.405977) + (xy 101.334972 71.35663) + (xy 101.3345 71.345822) + (xy 101.3345 71.340296) + (xy 101.3345 71.340291) + (xy 101.330901 71.309509) + (xy 101.330536 71.305929) + (xy 101.323999 71.231201) + (xy 101.322539 71.224129) + (xy 101.322597 71.224116) + (xy 101.320965 71.216757) + (xy 101.320906 71.216772) + (xy 101.319241 71.209751) + (xy 101.319241 71.209745) + (xy 101.293569 71.139212) + (xy 101.292421 71.135909) + (xy 101.268814 71.064666) + (xy 101.26881 71.064659) + (xy 101.26576 71.058118) + (xy 101.265815 71.058091) + (xy 101.262533 71.051313) + (xy 101.26248 71.05134) + (xy 101.259235 71.04488) + (xy 101.218025 70.982223) + (xy 101.216086 70.979181) + (xy 101.17671 70.915342) + (xy 101.172234 70.909682) + (xy 101.172281 70.909644) + (xy 101.167519 70.903799) + (xy 101.167474 70.903838) + (xy 101.162831 70.898305) + (xy 101.108274 70.846833) + (xy 101.105687 70.84432) + (xy 100.575729 70.314361) + (xy 100.563949 70.30073) + (xy 100.54961 70.28147) + (xy 100.511651 70.249619) + (xy 100.503686 70.242318) + (xy 100.49978 70.238411) + (xy 100.475443 70.219168) + (xy 100.472647 70.21689) + (xy 100.415214 70.168698) + (xy 100.40918 70.164729) + (xy 100.409212 70.16468) + (xy 100.402853 70.160628) + (xy 100.402822 70.160679) + (xy 100.39668 70.156891) + (xy 100.396678 70.15689) + (xy 100.396677 70.156889) + (xy 100.328688 70.125184) + (xy 100.325447 70.123615) + (xy 100.29453 70.108088) + (xy 100.258433 70.08996) + (xy 100.258431 70.089959) + (xy 100.25843 70.089959) + (xy 100.251645 70.087489) + (xy 100.251665 70.087433) + (xy 100.244549 70.084959) + (xy 100.244531 70.085015) + (xy 100.237674 70.082743) + (xy 100.16421 70.067573) + (xy 100.160693 70.066793) + (xy 100.087718 70.049499) + (xy 100.080547 70.048661) + (xy 100.080553 70.048601) + (xy 100.073055 70.047835) + (xy 100.07305 70.047895) + (xy 100.06586 70.047265) + (xy 99.99087 70.049448) + (xy 99.987263 70.0495) + (xy 96.863705 70.0495) + (xy 96.845735 70.048191) + (xy 96.821972 70.04471) + (xy 96.775642 70.048764) + (xy 96.772632 70.049028) + (xy 96.761826 70.0495) + (xy 96.756284 70.0495) + (xy 96.725484 70.0531) + (xy 96.721899 70.053466) + (xy 96.6472 70.060001) + (xy 96.640133 70.061461) + (xy 96.640121 70.061404) + (xy 96.632752 70.063038) + (xy 96.632766 70.063095) + (xy 96.625738 70.06476) + (xy 96.555253 70.090414) + (xy 96.551849 70.091597) + (xy 96.480676 70.115182) + (xy 96.474128 70.118236) + (xy 96.474102 70.118182) + (xy 96.467306 70.121472) + (xy 96.467332 70.121524) + (xy 96.460879 70.124764) + (xy 96.398196 70.165991) + (xy 96.395156 70.167928) + (xy 96.331347 70.207286) + (xy 96.325682 70.211766) + (xy 96.325646 70.21172) + (xy 96.319798 70.216484) + (xy 96.319835 70.216528) + (xy 96.314305 70.221168) + (xy 96.262833 70.275724) + (xy 96.260321 70.27831) + (xy 95.944572 70.594058) + (xy 95.883249 70.627543) + (xy 95.813557 70.622559) + (xy 95.757624 70.580687) + (xy 95.733363 70.517184) + (xy 95.721063 70.376597) + (xy 95.721063 70.376596) + (xy 95.721063 70.376592) + (xy 95.662195 70.156891) + (xy 95.659905 70.148344) + (xy 95.659904 70.148343) + (xy 95.659903 70.148337) + (xy 95.560035 69.934171) + (xy 95.424495 69.740599) + (xy 95.302179 69.618283) + (xy 95.268696 69.556963) + (xy 95.27368 69.487271) + (xy 95.315551 69.431337) + (xy 95.346529 69.414422) + (xy 95.478086 69.365354) + (xy 95.478093 69.36535) + (xy 95.593187 69.27919) + (xy 95.59319 69.279187) + (xy 95.67935 69.164093) + (xy 95.679354 69.164086) + (xy 95.729596 69.029379) + (xy 95.729598 69.029372) + (xy 95.735999 68.969844) + (xy 95.736 68.969827) + (xy 95.736 68.322) + (xy 94.819686 68.322) + (xy 94.845493 68.281844) + (xy 94.886 68.143889) + (xy 94.886 68.072) + (xy 97.683474 68.072) + (xy 97.703547 68.327064) + (xy 97.763279 68.575864) + (xy 97.861188 68.812239) + (xy 97.86119 68.812242) + (xy 97.994875 69.030396) + (xy 97.994878 69.030401) + (xy 98.0702 69.118591) + (xy 98.161044 69.224956) + (xy 98.285579 69.331319) + (xy 98.355598 69.391121) + (xy 98.3556 69.391122) + (xy 98.355601 69.391123) + (xy 98.568775 69.521756) + (xy 98.573757 69.524809) + (xy 98.57376 69.524811) + (xy 98.810135 69.62272) + (xy 98.81014 69.622722) + (xy 99.05893 69.682452) + (xy 99.250137 69.6975) + (xy 99.250145 69.6975) + (xy 99.377855 69.6975) + (xy 99.377863 69.6975) + (xy 99.56907 69.682452) + (xy 99.81786 69.622722) + (xy 99.93668 69.573505) + (xy 100.054239 69.524811) + (xy 100.05424 69.52481) + (xy 100.054243 69.524809) + (xy 100.272399 69.391123) + (xy 100.466956 69.224956) + (xy 100.633123 69.030399) + (xy 100.766809 68.812243) + (xy 100.864722 68.57586) + (xy 100.924452 68.32707) + (xy 100.944526 68.072) + (xy 100.924452 67.81693) + (xy 100.864722 67.56814) + (xy 100.86472 67.568135) + (xy 100.766811 67.33176) + (xy 100.766809 67.331757) + (xy 100.633124 67.113603) + (xy 100.633121 67.113598) + (xy 100.573319 67.043579) + (xy 100.466956 66.919044) + (xy 100.360591 66.8282) + (xy 100.272401 66.752878) + (xy 100.272396 66.752875) + (xy 100.054242 66.61919) + (xy 100.054239 66.619188) + (xy 99.817864 66.521279) + (xy 99.81786 66.521278) + (xy 99.56907 66.461548) + (xy 99.569068 66.461547) + (xy 99.569065 66.461547) + (xy 99.377868 66.4465) + (xy 99.377863 66.4465) + (xy 99.250137 66.4465) + (xy 99.250131 66.4465) + (xy 99.058934 66.461547) + (xy 98.810135 66.521279) + (xy 98.57376 66.619188) + (xy 98.573757 66.61919) + (xy 98.355603 66.752875) + (xy 98.355598 66.752878) + (xy 98.161044 66.919044) + (xy 97.994878 67.113598) + (xy 97.994875 67.113603) + (xy 97.86119 67.331757) + (xy 97.861188 67.33176) + (xy 97.763279 67.568135) + (xy 97.763278 67.56814) + (xy 97.711888 67.782194) + (xy 97.703547 67.816935) + (xy 97.683474 68.072) + (xy 94.886 68.072) + (xy 94.886 68.000111) + (xy 94.845493 67.862156) + (xy 94.819686 67.822) + (xy 95.736 67.822) + (xy 95.736 67.174172) + (xy 95.735999 67.174155) + (xy 95.729598 67.114627) + (xy 95.729596 67.11462) + (xy 95.679354 66.979913) + (xy 95.67935 66.979906) + (xy 95.59319 66.864812) + (xy 95.593187 66.864809) + (xy 95.478093 66.778649) + (xy 95.478086 66.778645) + (xy 95.343379 66.728403) + (xy 95.343372 66.728401) + (xy 95.283844 66.722) + (xy 94.636 66.722) + (xy 94.636 67.636498) + (xy 94.528315 67.58732) + (xy 94.421763 67.572) + (xy 94.350237 67.572) + (xy 94.243685 67.58732) + (xy 94.136 67.636498) + (xy 94.136 66.722) + (xy 93.488155 66.722) + (xy 93.428627 66.728401) + (xy 93.42862 66.728403) + (xy 93.293913 66.778645) + (xy 93.293906 66.778649) + (xy 93.178812 66.864809) + (xy 93.178809 66.864812) + (xy 93.092649 66.979906) + (xy 93.092645 66.979913) + (xy 93.042403 67.11462) + (xy 93.042401 67.114627) + (xy 93.036 67.174155) + (xy 93.036 67.822) + (xy 93.952314 67.822) + (xy 93.926507 67.862156) + (xy 93.886 68.000111) + (xy 93.886 68.143889) + (xy 93.926507 68.281844) + (xy 93.952314 68.322) + (xy 93.036 68.322) + (xy 93.036 68.969844) + (xy 93.042401 69.029372) + (xy 93.042403 69.029379) + (xy 93.092645 69.164086) + (xy 93.092649 69.164093) + (xy 93.178809 69.279187) + (xy 93.178812 69.27919) + (xy 93.293906 69.36535) + (xy 93.293913 69.365354) + (xy 93.42547 69.414421) + (xy 93.481403 69.456292) + (xy 93.505821 69.521756) + (xy 93.49097 69.590029) + (xy 93.469819 69.618284) + (xy 93.347503 69.7406) + (xy 93.211965 69.934169) + (xy 93.211964 69.934171) + (xy 93.112098 70.148335) + (xy 93.112094 70.148344) + (xy 93.050938 70.376586) + (xy 93.050936 70.376596) + (xy 93.030341 70.611999) + (xy 93.030341 70.612) + (xy 93.050936 70.847403) + (xy 93.050938 70.847413) + (xy 93.112094 71.075655) + (xy 93.112096 71.075659) + (xy 93.112097 71.075663) + (xy 93.179735 71.220713) + (xy 93.211965 71.28983) + (xy 93.211967 71.289834) + (xy 93.347501 71.483395) + (xy 93.347506 71.483402) + (xy 93.514597 71.650493) + (xy 93.514603 71.650498) + (xy 93.700158 71.780425) + (xy 93.743783 71.835002) + (xy 93.750977 71.9045) + (xy 93.719454 71.966855) + (xy 93.700158 71.983575) + (xy 93.514597 72.113505) + (xy 93.347505 72.280597) + (xy 93.212348 72.473623) + (xy 93.157771 72.517248) + (xy 93.110773 72.5265) + (xy 92.130738 72.5265) + (xy 92.115121 72.524776) + (xy 92.115094 72.525062) + (xy 92.107332 72.524327) + (xy 92.040145 72.526439) + (xy 92.036251 72.5265) + (xy 92.00865 72.5265) + (xy 92.004962 72.526965) + (xy 92.004649 72.527005) + (xy 91.993031 72.527918) + (xy 91.949373 72.52929) + (xy 91.949372 72.52929) + (xy 91.930129 72.534881) + (xy 91.911079 72.538825) + (xy 91.891211 72.541334) + (xy 91.89121 72.541334) + (xy 91.850599 72.557413) + (xy 91.839554 72.561194) + (xy 91.797614 72.573379) + (xy 91.79761 72.573381) + (xy 91.780366 72.583579) + (xy 91.762905 72.592133) + (xy 91.744274 72.59951) + (xy 91.744262 72.599517) + (xy 91.708933 72.625185) + (xy 91.699173 72.631596) + (xy 91.66158 72.653829) + (xy 91.647414 72.667995) + (xy 91.632624 72.680627) + (xy 91.616414 72.692404) + (xy 91.616411 72.692407) + (xy 91.588573 72.726058) + (xy 91.580711 72.734697) + (xy 91.29162 73.023787) + (xy 91.230297 73.057272) + (xy 91.217825 73.059326) + (xy 91.17075 73.06463) + (xy 91.000478 73.12421) + (xy 90.847739 73.220183) + (xy 90.801283 73.266638) + (xy 90.739959 73.300122) + (xy 90.670267 73.295136) + (xy 90.625922 73.266636) + (xy 89.238498 71.879212) + (xy 89.228675 71.86695) + (xy 89.228454 71.867134) + (xy 89.223481 71.861122) + (xy 89.174471 71.815099) + (xy 89.171672 71.812386) + (xy 89.152172 71.792885) + (xy 89.152166 71.79288) + (xy 89.148981 71.790409) + (xy 89.140129 71.782848) + (xy 89.108277 71.752938) + (xy 89.108275 71.752936) + (xy 89.108272 71.752935) + (xy 89.090724 71.743288) + (xy 89.074458 71.732604) + (xy 89.058627 71.720324) + (xy 89.018544 71.702978) + (xy 89.008058 71.697841) + (xy 88.969789 71.676803) + (xy 88.969787 71.676802) + (xy 88.950388 71.671822) + (xy 88.931976 71.665518) + (xy 88.913593 71.657562) + (xy 88.913587 71.65756) + (xy 88.870455 71.650729) + (xy 88.859017 71.648361) + (xy 88.816715 71.6375) + (xy 88.816714 71.6375) + (xy 88.796679 71.6375) + (xy 88.777281 71.635973) + (xy 88.769857 71.634797) + (xy 88.7575 71.63284) + (xy 88.757499 71.63284) + (xy 88.71402 71.63695) + (xy 88.702351 71.6375) + (xy 85.019743 71.6375) + (xy 85.004122 71.635775) + (xy 85.004096 71.636061) + (xy 84.996334 71.635327) + (xy 84.996333 71.635327) + (xy 84.944688 71.63695) + (xy 84.929127 71.637439) + (xy 84.925232 71.6375) + (xy 84.897647 71.6375) + (xy 84.893661 71.638003) + (xy 84.882033 71.638918) + (xy 84.838373 71.64029) + (xy 84.819129 71.645881) + (xy 84.800079 71.649825) + (xy 84.780211 71.652334) + (xy 84.78021 71.652334) + (xy 84.739599 71.668413) + (xy 84.728554 71.672194) + (xy 84.686614 71.684379) + (xy 84.68661 71.684381) + (xy 84.669366 71.694579) + (xy 84.651905 71.703133) + (xy 84.633274 71.71051) + (xy 84.633262 71.710517) + (xy 84.597933 71.736185) + (xy 84.588173 71.742596) + (xy 84.55058 71.764829) + (xy 84.536414 71.778995) + (xy 84.521624 71.791627) + (xy 84.505414 71.803404) + (xy 84.505411 71.803407) + (xy 84.477573 71.837058) + (xy 84.469711 71.845697) + (xy 83.29162 73.023787) + (xy 83.230297 73.057272) + (xy 83.217825 73.059326) + (xy 83.17075 73.06463) + (xy 83.000478 73.12421) + (xy 82.847737 73.220184) + (xy 82.720184 73.347737) + (xy 82.624211 73.500476) + (xy 82.564631 73.670745) + (xy 82.56463 73.67075) + (xy 82.544435 73.849996) + (xy 82.544435 73.850003) + (xy 82.56463 74.029249) + (xy 82.564631 74.029254) + (xy 82.624211 74.199523) + (xy 82.677922 74.285003) + (xy 82.696922 74.35224) + (xy 82.676554 74.419075) + (xy 82.623286 74.464289) + (xy 82.55403 74.473526) + (xy 82.490774 74.443855) + (xy 82.485247 74.438656) + (xy 81.830803 73.784212) + (xy 81.82098 73.77195) + (xy 81.820759 73.772134) + (xy 81.815786 73.766122) + (xy 81.766776 73.720099) + (xy 81.763977 73.717386) + (xy 81.744477 73.697885) + (xy 81.744471 73.69788) + (xy 81.741286 73.695409) + (xy 81.732434 73.687848) + (xy 81.700582 73.657938) + (xy 81.70058 73.657936) + (xy 81.700577 73.657935) + (xy 81.683029 73.648288) + (xy 81.666763 73.637604) + (xy 81.650932 73.625324) + (xy 81.610849 73.607978) + (xy 81.600363 73.602841) + (xy 81.562094 73.581803) + (xy 81.562092 73.581802) + (xy 81.542693 73.576822) + (xy 81.524281 73.570518) + (xy 81.505898 73.562562) + (xy 81.505892 73.56256) + (xy 81.46276 73.555729) + (xy 81.451322 73.553361) + (xy 81.40902 73.5425) + (xy 81.409019 73.5425) + (xy 81.388984 73.5425) + (xy 81.369586 73.540973) + (xy 81.362162 73.539797) + (xy 81.349805 73.53784) + (xy 81.349804 73.53784) + (xy 81.306325 73.54195) + (xy 81.294656 73.5425) + (xy 79.969671 73.5425) + (xy 79.902632 73.522815) + (xy 79.856877 73.470011) + (xy 79.846933 73.400853) + (xy 79.857289 73.366094) + (xy 79.866431 73.346487) + (xy 79.866432 73.346486) + (xy 79.923636 73.133) + (xy 79.026686 73.133) + (xy 79.052493 73.092844) + (xy 79.093 72.954889) + (xy 79.093 72.811111) + (xy 79.052493 72.673156) + (xy 79.026686 72.633) + (xy 79.923636 72.633) + (xy 79.923635 72.632999) + (xy 79.866432 72.419513) + (xy 79.866429 72.419507) + (xy 79.7666 72.205422) + (xy 79.766599 72.20542) + (xy 79.631113 72.011926) + (xy 79.631108 72.01192) + (xy 79.464082 71.844894) + (xy 79.270578 71.709399) + (xy 79.056492 71.60957) + (xy 79.056486 71.609567) + (xy 78.843 71.552364) + (xy 78.843 72.447498) + (xy 78.735315 72.39832) + (xy 78.628763 72.383) + (xy 78.557237 72.383) + (xy 78.450685 72.39832) + (xy 78.343 72.447498) + (xy 78.343 71.552364) + (xy 78.342999 71.552364) + (xy 78.129513 71.609567) + (xy 78.129507 71.60957) + (xy 77.915422 71.709399) + (xy 77.91542 71.7094) + (xy 77.721926 71.844886) + (xy 77.72192 71.844891) + (xy 77.554891 72.01192) + (xy 77.55489 72.011922) + (xy 77.42488 72.197595) + (xy 77.370303 72.241219) + (xy 77.300804 72.248412) + (xy 77.23845 72.21689) + (xy 77.22173 72.197594) + (xy 77.091494 72.011597) + (xy 76.924402 71.844506) + (xy 76.924395 71.844501) + (xy 76.913765 71.837058) + (xy 76.87853 71.812386) + (xy 76.730834 71.708967) + (xy 76.73083 71.708965) + (xy 76.710631 71.699546) + (xy 76.516663 71.609097) + (xy 76.516659 71.609096) + (xy 76.516655 71.609094) + (xy 76.288413 71.547938) + (xy 76.288403 71.547936) + (xy 76.053001 71.527341) + (xy 76.052999 71.527341) + (xy 75.817596 71.547936) + (xy 75.817586 71.547938) + (xy 75.589344 71.609094) + (xy 75.589335 71.609098) + (xy 75.375171 71.708964) + (xy 75.375169 71.708965) + (xy 75.181597 71.844505) + (xy 75.014505 72.011597) + (xy 74.878965 72.205169) + (xy 74.878964 72.205171) + (xy 74.779098 72.419335) + (xy 74.779094 72.419344) + (xy 74.717938 72.647586) + (xy 74.717936 72.647596) + (xy 74.697341 72.882999) + (xy 74.697341 72.883) + (xy 74.717936 73.118403) + (xy 74.717938 73.118413) + (xy 74.779094 73.346655) + (xy 74.779096 73.346659) + (xy 74.779097 73.346663) + (xy 74.850822 73.500478) + (xy 74.878965 73.56083) + (xy 74.878967 73.560834) + (xy 75.014501 73.754395) + (xy 75.014506 73.754402) + (xy 75.181597 73.921493) + (xy 75.181603 73.921498) + (xy 75.367158 74.051425) + (xy 75.410783 74.106002) + (xy 75.417977 74.1755) + (xy 75.386454 74.237855) + (xy 75.367158 74.254575) + (xy 75.181597 74.384505) + (xy 75.014505 74.551597) + (xy 74.878965 74.745169) + (xy 74.878964 74.745171) + (xy 74.779098 74.959335) + (xy 74.779094 74.959344) + (xy 74.717938 75.187586) + (xy 74.717936 75.187596) + (xy 74.697341 75.422999) + (xy 74.697341 75.423) + (xy 74.717936 75.658403) + (xy 74.717938 75.658413) + (xy 74.779094 75.886655) + (xy 74.779096 75.886659) + (xy 74.779097 75.886663) + (xy 74.851309 76.041522) + (xy 74.878965 76.10083) + (xy 74.878967 76.100834) + (xy 75.014501 76.294395) + (xy 75.014506 76.294402) + (xy 75.13643 76.416326) + (xy 75.169915 76.477649) + (xy 75.164931 76.547341) + (xy 75.123059 76.603274) + (xy 75.092083 76.620189) + (xy 74.960669 76.669203) + (xy 74.960664 76.669206) + (xy 74.845455 76.755452) + (xy 74.845452 76.755455) + (xy 74.759206 76.870664) + (xy 74.759202 76.870671) + (xy 74.708908 77.005517) + (xy 74.702501 77.065116) + (xy 74.7025 77.065135) + (xy 74.7025 78.86087) + (xy 74.702501 78.860876) + (xy 74.708908 78.920483) + (xy 74.759202 79.055328) + (xy 74.759206 79.055335) + (xy 74.845452 79.170544) + (xy 74.845455 79.170547) + (xy 74.960664 79.256793) + (xy 74.960671 79.256797) + (xy 75.095517 79.307091) + (xy 75.095516 79.307091) + (xy 75.102444 79.307835) + (xy 75.155127 79.3135) + (xy 75.881769 79.313499) + (xy 75.948808 79.333183) + (xy 75.994563 79.385987) + (xy 76.004507 79.455146) + (xy 75.975482 79.518702) + (xy 75.96945 79.52518) + (xy 74.100017 81.394613) + (xy 74.080481 81.410528) + (xy 74.064308 81.421166) + (xy 74.064301 81.421172) + (xy 74.056606 81.429328) + (xy 74.040469 81.443689) + (xy 74.03147 81.450388) + (xy 74.03147 81.450389) + (xy 73.991432 81.498102) + (xy 73.986641 81.503486) + (xy 73.943905 81.548784) + (xy 73.9383 81.558493) + (xy 73.925909 81.576191) + (xy 73.918699 81.584783) + (xy 73.890749 81.640436) + (xy 73.887327 81.646781) + (xy 73.856188 81.700717) + (xy 73.856187 81.700719) + (xy 73.852968 81.71147) + (xy 73.844996 81.731537) + (xy 73.83996 81.741565) + (xy 73.839959 81.741569) + (xy 73.825598 81.802158) + (xy 73.823733 81.80912) + (xy 73.805869 81.868792) + (xy 73.805217 81.87999) + (xy 73.802087 81.901361) + (xy 73.7995 81.912279) + (xy 73.7995 81.974554) + (xy 73.79929 81.981764) + (xy 73.795668 82.043933) + (xy 73.795669 82.043935) + (xy 73.797616 82.054977) + (xy 73.7995 82.076509) + (xy 73.7995 98.870294) + (xy 73.798191 98.888263) + (xy 73.79471 98.912025) + (xy 73.1445 98.912025) + (xy 73.1445 68.072) + (xy 74.683474 68.072) + (xy 74.703547 68.327064) + (xy 74.763279 68.575864) + (xy 74.861188 68.812239) + (xy 74.86119 68.812242) + (xy 74.994875 69.030396) + (xy 74.994878 69.030401) + (xy 75.0702 69.118591) + (xy 75.161044 69.224956) + (xy 75.285579 69.331319) + (xy 75.355598 69.391121) + (xy 75.3556 69.391122) + (xy 75.355601 69.391123) + (xy 75.568775 69.521756) + (xy 75.573757 69.524809) + (xy 75.57376 69.524811) + (xy 75.810135 69.62272) + (xy 75.81014 69.622722) + (xy 76.05893 69.682452) + (xy 76.250137 69.6975) + (xy 76.250145 69.6975) + (xy 76.377855 69.6975) + (xy 76.377863 69.6975) + (xy 76.56907 69.682452) + (xy 76.81786 69.622722) + (xy 76.93668 69.573505) + (xy 77.054239 69.524811) + (xy 77.05424 69.52481) + (xy 77.054243 69.524809) + (xy 77.272399 69.391123) + (xy 77.466956 69.224956) + (xy 77.633123 69.030399) + (xy 77.766809 68.812243) + (xy 77.864722 68.57586) + (xy 77.924452 68.32707) + (xy 77.944526 68.072) + (xy 77.924452 67.81693) + (xy 77.864722 67.56814) + (xy 77.86472 67.568135) + (xy 77.766811 67.33176) + (xy 77.766809 67.331757) + (xy 77.633124 67.113603) + (xy 77.633121 67.113598) + (xy 77.573319 67.043579) + (xy 77.466956 66.919044) + (xy 77.360591 66.8282) + (xy 77.272401 66.752878) + (xy 77.272396 66.752875) + (xy 77.054242 66.61919) + (xy 77.054239 66.619188) + (xy 76.817864 66.521279) + (xy 76.81786 66.521278) + (xy 76.56907 66.461548) + (xy 76.569068 66.461547) + (xy 76.569065 66.461547) + (xy 76.377868 66.4465) + (xy 76.377863 66.4465) + (xy 76.250137 66.4465) + (xy 76.250131 66.4465) + (xy 76.058934 66.461547) + (xy 75.810135 66.521279) + (xy 75.57376 66.619188) + (xy 75.573757 66.61919) + (xy 75.355603 66.752875) + (xy 75.355598 66.752878) + (xy 75.161044 66.919044) + (xy 74.994878 67.113598) + (xy 74.994875 67.113603) + (xy 74.86119 67.331757) + (xy 74.861188 67.33176) + (xy 74.763279 67.568135) + (xy 74.763278 67.56814) + (xy 74.711888 67.782194) + (xy 74.703547 67.816935) + (xy 74.683474 68.072) + (xy 73.1445 68.072) + (xy 73.1445 67.893894) + (xy 73.144501 67.893881) + (xy 73.144501 67.82148) + (xy 73.144696 67.814528) + (xy 73.154101 67.647048) + (xy 73.161726 67.511273) + (xy 73.16328 67.497478) + (xy 73.213573 67.20147) + (xy 73.216667 67.187918) + (xy 73.220628 67.174172) + (xy 73.299786 66.899408) + (xy 73.304378 66.886288) + (xy 73.372428 66.722) + (xy 73.419274 66.608902) + (xy 73.425297 66.596395) + (xy 73.570537 66.333602) + (xy 73.577932 66.321834) + (xy 73.671288 66.190261) + (xy 73.751676 66.076964) + (xy 73.760331 66.06611) + (xy 73.96041 65.842222) + (xy 73.970222 65.83241) + (xy 74.19411 65.632331) + (xy 74.204964 65.623676) + (xy 74.449839 65.449928) + (xy 74.461602 65.442537) + (xy 74.724395 65.297297) + (xy 74.736902 65.291274) + (xy 75.014288 65.176378) + (xy 75.027408 65.171786) + (xy 75.315924 65.088665) + (xy 75.32947 65.085573) + (xy 75.625478 65.03528) + (xy 75.639273 65.033726) + (xy 75.908179 65.018624) + (xy 75.942529 65.016696) + (xy 75.949481 65.016501) + (xy 76.021882 65.016501) + (xy 76.021894 65.0165) + (xy 99.477441 65.0165) + ) + ) + ) +) diff --git a/HARDWARE/RF_RX.kicad_prl b/HARDWARE/RF_RX.kicad_prl new file mode 100644 index 0000000..b6f586e --- /dev/null +++ b/HARDWARE/RF_RX.kicad_prl @@ -0,0 +1,77 @@ +{ + "board": { + "active_layer": 0, + "active_layer_preset": "All Layers", + "auto_track_width": false, + "hidden_netclasses": [], + "hidden_nets": [], + "high_contrast_mode": 1, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": false, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36, + 39, + 40 + ], + "visible_layers": "fffffff_ffffffff", + "zone_display_mode": 0 + }, + "meta": { + "filename": "RF_RX.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/HARDWARE/RF_RX.kicad_pro b/HARDWARE/RF_RX.kicad_pro new file mode 100644 index 0000000..f8ac66b --- /dev/null +++ b/HARDWARE/RF_RX.kicad_pro @@ -0,0 +1,477 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "board_outline_line_width": 0.09999999999999999, + "copper_line_width": 0.19999999999999998, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.049999999999999996, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.09999999999999999, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.15, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 2.75, + "height": 2.75, + "width": 2.75 + }, + "silk_line_width": 0.15, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.0 + } + }, + "diff_pair_dimensions": [], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_near_hole": "error", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.0, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.5, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.19999999999999998, + "min_microvia_drill": 0.09999999999999999, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.7999999999999999, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.0, + "min_via_annular_width": 0.09999999999999999, + "min_via_diameter": 0.5, + "solder_mask_clearance": 0.0, + "solder_mask_min_width": 0.0, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 5, + "td_on_pad_in_zone": false, + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [], + "via_dimensions": [], + "zones_allow_external_fillets": false + }, + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "conflicting_netclasses": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "simulation_model_issue": "ignore", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "RF_RX.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.25, + "via_diameter": 0.8, + "via_drill": 0.4, + "wire_width": 6 + } + ], + "meta": { + "version": 3 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "KiCad", + "page_layout_descr_file": "", + "plot_directory": "", + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "ee54cef4-ef18-4d84-97cc-91644e7d2a0a", + "" + ] + ], + "text_variables": {} +} diff --git a/HARDWARE/RF_RX.kicad_sch b/HARDWARE/RF_RX.kicad_sch new file mode 100644 index 0000000..2b2451f --- /dev/null +++ b/HARDWARE/RF_RX.kicad_sch @@ -0,0 +1,5445 @@ +(kicad_sch (version 20230121) (generator eeschema) + + (uuid ee54cef4-ef18-4d84-97cc-91644e7d2a0a) + + (paper "A4") + + (lib_symbols + (symbol "Connector:AVR-ISP-6" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "J" (at -6.35 11.43 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "AVR-ISP-6" (at 0 11.43 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (at -6.35 1.27 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" " ~" (at -32.385 -13.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "AVR ISP Connector" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Atmel 6-pin ISP connector" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "IDC?Header*2x03* Pin?Header*2x03*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "AVR-ISP-6_0_1" + (rectangle (start -2.667 -6.858) (end -2.413 -7.62) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (rectangle (start -2.667 10.16) (end -2.413 9.398) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (rectangle (start 7.62 -2.413) (end 6.858 -2.667) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (rectangle (start 7.62 0.127) (end 6.858 -0.127) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (rectangle (start 7.62 2.667) (end 6.858 2.413) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (rectangle (start 7.62 5.207) (end 6.858 4.953) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (rectangle (start 7.62 10.16) (end -7.62 -7.62) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + ) + (symbol "AVR-ISP-6_1_1" + (pin passive line (at 10.16 5.08 180) (length 2.54) + (name "MISO" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 12.7 270) (length 2.54) + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 10.16 0 180) (length 2.54) + (name "SCK" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 10.16 2.54 180) (length 2.54) + (name "MOSI" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 10.16 -2.54 180) (length 2.54) + (name "~{RST}" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 -10.16 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Audio:AudioJack3_Ground" (in_bom yes) (on_board yes) + (property "Reference" "J" (at 0 8.89 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "AudioJack3_Ground" (at 0 6.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "audio jack receptacle stereo headphones phones TRS connector" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Audio Jack, 3 Poles (Stereo / TRS), Grounded Sleeve" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Jack*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "AudioJack3_Ground_0_1" + (rectangle (start -5.08 -2.54) (end -6.35 -5.08) + (stroke (width 0.254) (type default)) + (fill (type outline)) + ) + (polyline + (pts + (xy 0 -2.54) + (xy 0.635 -3.175) + (xy 1.27 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0.254) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.905 -2.54) + (xy -1.27 -3.175) + (xy -0.635 -2.54) + (xy -0.635 0) + (xy 2.54 0) + ) + (stroke (width 0.254) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy -2.54 2.54) + (xy -2.54 -2.54) + (xy -3.175 -3.175) + (xy -3.81 -2.54) + ) + (stroke (width 0.254) (type default)) + (fill (type none)) + ) + (rectangle (start 2.54 3.81) (end -5.08 -5.08) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + ) + (symbol "AudioJack3_Ground_1_1" + (pin passive line (at 0 -7.62 90) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "G" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "R" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 2.54 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "S" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -2.54 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "T" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x01" (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x01_1_1" + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 1.27) (end 1.27 -1.27) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x04" (at 0 -7.62 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x04_1_1" + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 3.81) (end 1.27 -6.35) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x11" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (at 0 15.24 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x11" (at 0 -15.24 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x11_1_1" + (rectangle (start -1.27 -12.573) (end 0 -12.827) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -10.033) (end 0 -10.287) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -7.493) (end 0 -7.747) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 5.207) (end 0 4.953) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 7.747) (end 0 7.493) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 10.287) (end 0 10.033) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 12.827) (end 0 12.573) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 13.97) (end 1.27 -13.97) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + (pin passive line (at -5.08 12.7 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -10.16 0) (length 3.81) + (name "Pin_10" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -12.7 0) (length 3.81) + (name "Pin_11" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 10.16 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 7.62 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 5.08 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -7.62 0) (length 3.81) + (name "Pin_9" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_02x02_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (at 1.27 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_02x02_Odd_Even" (at 1.27 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_02x02_Odd_Even_1_1" + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 1.27) (end 3.81 -3.81) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + (rectangle (start 3.81 -2.413) (end 2.54 -2.667) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 0.127) (end 2.54 -0.127) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 0 180) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -2.54 180) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_02x20_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (at 1.27 25.4 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_02x20_Odd_Even" (at 1.27 -27.94 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_02x20_Odd_Even_1_1" + (rectangle (start -1.27 -25.273) (end 0 -25.527) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -22.733) (end 0 -22.987) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -20.193) (end 0 -20.447) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -17.653) (end 0 -17.907) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -15.113) (end 0 -15.367) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -12.573) (end 0 -12.827) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -10.033) (end 0 -10.287) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -7.493) (end 0 -7.747) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 5.207) (end 0 4.953) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 7.747) (end 0 7.493) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 10.287) (end 0 10.033) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 12.827) (end 0 12.573) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 15.367) (end 0 15.113) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 17.907) (end 0 17.653) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 20.447) (end 0 20.193) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 22.987) (end 0 22.733) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 24.13) (end 3.81 -26.67) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + (rectangle (start 3.81 -25.273) (end 2.54 -25.527) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -22.733) (end 2.54 -22.987) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -20.193) (end 2.54 -20.447) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -17.653) (end 2.54 -17.907) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -15.113) (end 2.54 -15.367) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -12.573) (end 2.54 -12.827) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -10.033) (end 2.54 -10.287) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -7.493) (end 2.54 -7.747) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -4.953) (end 2.54 -5.207) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -2.413) (end 2.54 -2.667) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 0.127) (end 2.54 -0.127) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 2.667) (end 2.54 2.413) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 5.207) (end 2.54 4.953) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 7.747) (end 2.54 7.493) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 10.287) (end 2.54 10.033) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 12.827) (end 2.54 12.573) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 15.367) (end 2.54 15.113) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 17.907) (end 2.54 17.653) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 20.447) (end 2.54 20.193) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 22.987) (end 2.54 22.733) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (pin passive line (at -5.08 22.86 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 12.7 180) (length 3.81) + (name "Pin_10" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 10.16 0) (length 3.81) + (name "Pin_11" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 10.16 180) (length 3.81) + (name "Pin_12" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 7.62 0) (length 3.81) + (name "Pin_13" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 7.62 180) (length 3.81) + (name "Pin_14" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 5.08 0) (length 3.81) + (name "Pin_15" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 5.08 180) (length 3.81) + (name "Pin_16" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_17" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 2.54 180) (length 3.81) + (name "Pin_18" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_19" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 22.86 180) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 0 180) (length 3.81) + (name "Pin_20" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_21" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -2.54 180) (length 3.81) + (name "Pin_22" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_23" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -5.08 180) (length 3.81) + (name "Pin_24" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -7.62 0) (length 3.81) + (name "Pin_25" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -7.62 180) (length 3.81) + (name "Pin_26" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -10.16 0) (length 3.81) + (name "Pin_27" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -10.16 180) (length 3.81) + (name "Pin_28" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -12.7 0) (length 3.81) + (name "Pin_29" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 20.32 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -12.7 180) (length 3.81) + (name "Pin_30" (effects (font (size 1.27 1.27)))) + (number "30" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -15.24 0) (length 3.81) + (name "Pin_31" (effects (font (size 1.27 1.27)))) + (number "31" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -15.24 180) (length 3.81) + (name "Pin_32" (effects (font (size 1.27 1.27)))) + (number "32" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -17.78 0) (length 3.81) + (name "Pin_33" (effects (font (size 1.27 1.27)))) + (number "33" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -17.78 180) (length 3.81) + (name "Pin_34" (effects (font (size 1.27 1.27)))) + (number "34" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -20.32 0) (length 3.81) + (name "Pin_35" (effects (font (size 1.27 1.27)))) + (number "35" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -20.32 180) (length 3.81) + (name "Pin_36" (effects (font (size 1.27 1.27)))) + (number "36" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -22.86 0) (length 3.81) + (name "Pin_37" (effects (font (size 1.27 1.27)))) + (number "37" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -22.86 180) (length 3.81) + (name "Pin_38" (effects (font (size 1.27 1.27)))) + (number "38" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -25.4 0) (length 3.81) + (name "Pin_39" (effects (font (size 1.27 1.27)))) + (number "39" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 20.32 180) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -25.4 180) (length 3.81) + (name "Pin_40" (effects (font (size 1.27 1.27)))) + (number "40" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 17.78 0) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 17.78 180) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 15.24 0) (length 3.81) + (name "Pin_7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 15.24 180) (length 3.81) + (name "Pin_8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 12.7 0) (length 3.81) + (name "Pin_9" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Converter_DCDC:TME-0505S" (in_bom yes) (on_board yes) + (property "Reference" "U" (at -6.35 6.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TME-0505S" (at 2.54 6.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Converter_DCDC:Converter_DCDC_TRACO_TME_03xxS_05xxS_12xxS_Single_THT" (at 0 -8.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "https://www.tracopower.com/products/tme.pdf" (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "Traco isolated isolation dc-dc converter not-regulated non-regulated single 1W" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "1W DC/DC converter unregulated, 4.5-5.5V input, 5V output voltage, 200mA output, 1kVDC isolation, SIP-4" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Converter*DCDC*TRACO*TME*03xxS*05xxS*12xxS*Single*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TME-0505S_0_0" + (pin power_in line (at -10.16 -2.54 0) (length 2.54) + (name "-Vin" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -10.16 2.54 0) (length 2.54) + (name "+Vin" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 10.16 -2.54 180) (length 2.54) + (name "-Vout" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 10.16 2.54 180) (length 2.54) + (name "+Vout" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "TME-0505S_0_1" + (rectangle (start -7.62 5.08) (end 7.62 -5.08) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + (polyline + (pts + (xy 0 -2.54) + (xy 0 -3.81) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0 1.27) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 5.08) + (xy 0 3.81) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + ) + (symbol "Device:Buzzer" (pin_names (offset 0.0254) hide) (in_bom yes) (on_board yes) + (property "Reference" "BZ" (at 3.81 1.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Buzzer" (at 3.81 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (at -0.635 2.54 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at -0.635 2.54 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "quartz resonator ceramic" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Buzzer, polarized" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "*Buzzer*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Buzzer_0_1" + (arc (start 0 -3.175) (mid 3.1612 0) (end 0 3.175) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.651 1.905) + (xy -1.143 1.905) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.397 2.159) + (xy -1.397 1.651) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 3.175) + (xy 0 -3.175) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "Buzzer_1_1" + (pin passive line (at -2.54 2.54 0) (length 2.54) + (name "-" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 -2.54 0) (length 2.54) + (name "+" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "C" (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (at 0.9652 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "cap capacitor" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Unpolarized capacitor" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "C_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) + (xy 2.032 -0.762) + ) + (stroke (width 0.508) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.032 0.762) + (xy 2.032 0.762) + ) + (stroke (width 0.508) (type default)) + (fill (type none)) + ) + ) + (symbol "C_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "C_Polarized" (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (at 0.9652 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "cap capacitor" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Polarized capacitor" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "CP_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "C_Polarized_0_1" + (rectangle (start -2.286 0.508) (end 2.286 1.016) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 2.286) + (xy -0.762 2.286) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 2.794) + (xy -1.27 1.778) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (rectangle (start 2.286 -0.508) (end -2.286 -1.016) + (stroke (width 0) (type default)) + (fill (type outline)) + ) + ) + (symbol "C_Polarized_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:Crystal_GND3" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "Y" (at 0 5.715 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Crystal_GND3" (at 0 3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "quartz ceramic resonator oscillator" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Three pin crystal, GND on pin 3" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Crystal*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Crystal_GND3_0_1" + (rectangle (start -1.143 2.54) (end 1.143 -2.54) + (stroke (width 0.3048) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 0) + (xy -1.905 0) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.905 -1.27) + (xy -1.905 1.27) + ) + (stroke (width 0.508) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -3.81) + (xy 0 -3.556) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 0) + (xy 2.54 0) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 1.27) + (xy 1.905 -1.27) + ) + (stroke (width 0.508) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 -2.286) + (xy -2.54 -3.556) + (xy 2.54 -3.556) + (xy 2.54 -2.286) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "Crystal_GND3_1_1" + (pin passive line (at -3.81 0 0) (length 1.27) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 0 180) (length 1.27) + (name "2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -5.08 90) (length 1.27) + (name "3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (at 2.032 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "R" (at 0 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at -1.778 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "R res resistor" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Resistor" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "R_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "R_0_1" + (rectangle (start -1.016 -2.54) (end 1.016 2.54) + (stroke (width 0.254) (type default)) + (fill (type none)) + ) + ) + (symbol "R_1_1" + (pin passive line (at 0 3.81 270) (length 1.27) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 1.27) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Interface_Optical:TSMP58000" (in_bom yes) (on_board yes) + (property "Reference" "U" (at -10.16 7.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TSMP58000" (at -10.16 -7.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "OptoDevice:Vishay_MINICAST-3Pin" (at -1.27 -9.525 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.vishay.com/docs/82485/tsmp58000.pdf" (at 16.51 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "opto IR receiver" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Photo Module (Amplify&Condition) for PCM Remote Control Systems" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Vishay*MINICAST*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TSMP58000_0_0" + (arc (start -10.287 1.397) (mid -11.0899 -0.1852) (end -10.287 -1.778) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + (polyline + (pts + (xy 1.905 -5.08) + (xy 0.127 -5.08) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 5.08) + (xy 0.127 5.08) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (text "CONDITION" (at -2.921 0 900) + (effects (font (size 1.524 1.524))) + ) + ) + (symbol "TSMP58000_0_1" + (rectangle (start -6.096 5.969) (end 0.127 -5.969) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -8.763 0.381) + (xy -9.652 1.27) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -8.763 0.381) + (xy -9.271 0.381) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -8.763 0.381) + (xy -8.763 0.889) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -8.636 -0.635) + (xy -9.525 0.254) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -8.636 -0.635) + (xy -9.144 -0.635) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -8.636 -0.635) + (xy -8.636 -0.127) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -8.382 -1.016) + (xy -6.731 -1.016) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -2.921) + (xy 0.127 -2.921) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.905) + (xy 1.27 -3.81) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.397 -3.556) + (xy 1.524 -3.556) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.651 -3.556) + (xy 1.524 -3.556) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.651 -3.556) + (xy 1.651 -3.302) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 0) + (xy 1.905 1.27) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 4.445) + (xy 1.905 5.08) + (xy 2.54 5.08) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -8.382 0.635) + (xy -6.731 0.635) + (xy -7.62 -1.016) + (xy -8.382 0.635) + ) + (stroke (width 0) (type default)) + (fill (type outline)) + ) + (polyline + (pts + (xy -6.096 1.397) + (xy -7.62 1.397) + (xy -7.62 -1.778) + (xy -6.096 -1.778) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -3.175) + (xy 1.905 -3.81) + (xy 1.905 -5.08) + (xy 2.54 -5.08) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -2.54) + (xy 1.905 -1.905) + (xy 1.905 0) + (xy 2.54 0) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (rectangle (start 2.54 1.27) (end 1.27 4.445) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (rectangle (start 7.62 6.35) (end -10.16 -6.35) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + ) + (symbol "TSMP58000_1_1" + (pin output line (at 10.16 0 180) (length 2.54) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 10.16 -5.08 180) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 10.16 5.08 180) (length 2.54) + (name "Vs" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "JP" (at -2.54 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Jumper_3_Bridged12" (at 0 2.794 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "Jumper SPDT" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Jumper_3_Bridged12_0_0" + (circle (center -3.302 0) (radius 0.508) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (circle (center 0 0) (radius 0.508) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (circle (center 3.302 0) (radius 0.508) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "Jumper_3_Bridged12_0_1" + (arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -1.27) + (xy 0 -0.508) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "Jumper_3_Bridged12_1_1" + (pin passive line (at -6.35 0 0) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 6.35 0 180) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "MCU_Microchip_ATtiny:ATtiny84-20SS" (in_bom yes) (on_board yes) + (property "Reference" "U" (at -12.7 21.59 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Value" "ATtiny84-20SS" (at 2.54 -21.59 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) + (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 0 0 0) + (effects (font (size 1.27 1.27) italic) hide) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc8006.pdf" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "AVR 8bit Microcontroller tinyAVR" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "20MHz, 8kB Flash, 512B SRAM, 512B EEPROM, debugWIRE, SOIC-14" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "ATtiny84-20SS_0_1" + (rectangle (start -12.7 -20.32) (end 12.7 20.32) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + ) + (symbol "ATtiny84-20SS_1_1" + (pin power_in line (at 0 22.86 270) (length 2.54) + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 7.62 180) (length 2.54) + (name "PA3" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 10.16 180) (length 2.54) + (name "PA2" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 12.7 180) (length 2.54) + (name "PA1" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 15.24 180) (length 2.54) + (name "AREF/PA0" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -22.86 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -7.62 180) (length 2.54) + (name "XTAL1/PB0" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -10.16 180) (length 2.54) + (name "XTAL2/PB1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -15.24 180) (length 2.54) + (name "~{RESET}/PB3" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -12.7 180) (length 2.54) + (name "PB2" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -2.54 180) (length 2.54) + (name "PA7" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 0 180) (length 2.54) + (name "PA6" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 2.54 180) (length 2.54) + (name "PA5" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 5.08 180) (length 2.54) + (name "PA4" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Switch:SW_SPST" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "SW" (at 0 3.175 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SW_SPST" (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "switch lever" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Single Pole Single Throw (SPST) switch" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SW_SPST_0_0" + (circle (center -2.032 0) (radius 0.508) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 0.254) + (xy 1.524 1.778) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (circle (center 2.032 0) (radius 0.508) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "SW_SPST_1_1" + (pin passive line (at -5.08 0 0) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Transistor_FET:2N7002" (pin_names hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (at 5.08 1.905 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N7002" (at 5.08 0 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 5.08 -1.905 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_keywords" "N-Channel Switching MOSFET" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "0.115A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SOT?23*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "2N7002_0_1" + (polyline + (pts + (xy 0.254 0) + (xy -2.54 0) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.254 1.905) + (xy 0.254 -1.905) + ) + (stroke (width 0.254) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.27) + (xy 0.762 -2.286) + ) + (stroke (width 0.254) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 0.508) + (xy 0.762 -0.508) + ) + (stroke (width 0.254) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 2.286) + (xy 0.762 1.27) + ) + (stroke (width 0.254) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy 2.54 1.778) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 -2.54) + (xy 2.54 0) + (xy 0.762 0) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.778) + (xy 3.302 -1.778) + (xy 3.302 1.778) + (xy 0.762 1.778) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.016 0) + (xy 2.032 0.381) + (xy 2.032 -0.381) + (xy 1.016 0) + ) + (stroke (width 0) (type default)) + (fill (type outline)) + ) + (polyline + (pts + (xy 2.794 0.508) + (xy 2.921 0.381) + (xy 3.683 0.381) + (xy 3.81 0.254) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 0.381) + (xy 2.921 -0.254) + (xy 3.683 -0.254) + (xy 3.302 0.381) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (circle (center 1.651 0) (radius 2.794) + (stroke (width 0.254) (type default)) + (fill (type none)) + ) + (circle (center 2.54 -1.778) (radius 0.254) + (stroke (width 0) (type default)) + (fill (type outline)) + ) + (circle (center 2.54 1.778) (radius 0.254) + (stroke (width 0) (type default)) + (fill (type outline)) + ) + ) + (symbol "2N7002_1_1" + (pin input line (at -5.08 0 0) (length 2.54) + (name "G" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "dk_Infrared-UV-Visible-Emitters:SFH_4545" (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "D" (at -1.905 4.445 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "SFH_4545" (at 5.715 -3.175 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "digikey-footprints:LED_5mm_Radial" (at 5.08 5.08 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Datasheet" "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf" (at 5.08 7.62 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Digi-Key_PN" "475-2919-ND" (at 5.08 10.16 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "MPN" "SFH 4545" (at 5.08 12.7 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Category" "Optoelectronics" (at 5.08 15.24 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Family" "Infrared, UV, Visible Emitters" (at 5.08 17.78 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Datasheet_Link" "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf" (at 5.08 20.32 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Detail_Page" "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955" (at 5.08 22.86 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Description" "EMITTER IR 950NM 100MA RADIAL" (at 5.08 25.4 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Manufacturer" "OSRAM Opto Semiconductors Inc." (at 5.08 27.94 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Status" "Active" (at 5.08 30.48 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "ki_keywords" "475-2919-ND" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "EMITTER IR 950NM 100MA RADIAL" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SFH_4545_0_1" + (polyline + (pts + (xy 2.54 1.27) + (xy 2.54 -1.27) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 3.81) + (xy 1.27 2.54) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 3.175) + (xy 2.54 1.905) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 3.81) + (xy 2.54 3.81) + (xy 2.54 3.175) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.175 3.175) + (xy 3.81 3.175) + (xy 3.81 2.54) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 0 -1.27) + (xy 2.54 0) + (xy 0 1.27) + ) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + ) + (symbol "SFH_4545_1_1" + (pin passive line (at -2.54 0 0) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "dk_Solid-State-Relays:TLP222AF" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "RLY" (at 0 8.382 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TLP222AF" (at 0 -9.144 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "digikey-footprints:DIP-4_W7.62mm" (at 5.08 5.08 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2" (at 5.08 7.62 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Digi-Key_PN" "TLP222AF-ND" (at 5.08 10.16 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "MPN" "TLP222AF" (at 5.08 12.7 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Category" "Relays" (at 5.08 15.24 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Family" "Solid State Relays" (at 5.08 17.78 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Datasheet_Link" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2" (at 5.08 20.32 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Detail_Page" "/product-detail/en/toshiba-semiconductor-and-storage/TLP222AF/TLP222AF-ND/871243" (at 5.08 22.86 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Description" "SSR RELAY SPST-NO 500MA 0-60V" (at 5.08 25.4 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Manufacturer" "Toshiba Semiconductor and Storage" (at 5.08 27.94 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Status" "Active" (at 5.08 30.48 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "ki_keywords" "TLP222AF-ND TLP222A" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "SSR RELAY SPST-NO 500MA 0-60V" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TLP222AF_0_1" + (rectangle (start -5.715 6.985) (end 5.715 -6.985) + (stroke (width 0) (type solid)) + (fill (type background)) + ) + (polyline + (pts + (xy -4.699 -0.635) + (xy -2.921 -0.635) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 -0.889) + (xy -2.032 -1.397) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.159 0.254) + (xy -1.651 -0.254) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.27) + (xy 1.27 -5.08) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 5.08) + (xy 1.27 1.27) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 -3.81) + (xy 1.905 -2.54) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 -1.905) + (xy 1.905 -0.635) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 1.905) + (xy 1.905 0.635) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 3.81) + (xy 1.905 2.54) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.794 -3.175) + (xy 2.413 -3.175) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.794 -3.175) + (xy 2.794 3.175) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.794 3.175) + (xy 2.413 3.175) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.81) + (xy 4.318 -3.81) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 3.81) + (xy 4.318 3.81) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -3.81) + (xy 3.81 -5.08) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 3.81) + (xy 3.81 5.08) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 -0.508) + (xy -3.81 -5.08) + (xy -6.985 -5.08) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 0.508) + (xy -3.81 5.08) + (xy -6.985 5.08) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 -0.889) + (xy -1.905 -0.889) + (xy -2.667 -0.127) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.159 0.254) + (xy -1.524 0.254) + (xy -2.286 1.016) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 -1.27) + (xy 3.81 -1.27) + (xy 3.81 -3.175) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 1.27) + (xy 3.81 1.27) + (xy 3.81 3.175) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy -4.572 0.889) + (xy -3.175 0.889) + (xy -3.81 -0.635) + (xy -4.572 0.889) + ) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + (polyline + (pts + (xy -2.159 -1.651) + (xy -1.778 -1.27) + (xy -1.651 -1.778) + (xy -2.159 -1.651) + ) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + (polyline + (pts + (xy -1.778 -0.508) + (xy -1.397 -0.127) + (xy -1.27 -0.635) + (xy -1.778 -0.508) + ) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + (polyline + (pts + (xy 1.27 -3.175) + (xy 0 -3.175) + (xy 0 3.175) + (xy 1.27 3.175) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.413 -2.921) + (xy 2.413 -3.429) + (xy 1.905 -3.175) + (xy 2.413 -2.921) + ) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + (polyline + (pts + (xy 2.413 3.429) + (xy 2.413 2.921) + (xy 1.905 3.175) + (xy 2.413 3.429) + ) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + (polyline + (pts + (xy 3.81 -3.81) + (xy 3.302 -2.921) + (xy 4.318 -2.921) + (xy 3.81 -3.81) + ) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + (polyline + (pts + (xy 3.81 3.81) + (xy 3.302 2.921) + (xy 4.318 2.921) + (xy 3.81 3.81) + ) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + (polyline + (pts + (xy 6.35 -5.08) + (xy 1.905 -5.08) + (xy 1.905 -4.445) + (xy 1.905 -5.715) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (polyline + (pts + (xy 6.35 5.08) + (xy 1.905 5.08) + (xy 1.905 5.715) + (xy 1.905 4.445) + ) + (stroke (width 0) (type solid)) + (fill (type none)) + ) + (circle (center 2.794 -1.27) (radius 0.1778) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + (circle (center 2.794 1.27) (radius 0.1778) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + (circle (center 3.81 -5.08) (radius 0.1778) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + (circle (center 3.81 5.08) (radius 0.1778) + (stroke (width 0) (type solid)) + (fill (type outline)) + ) + ) + (symbol "TLP222AF_1_1" + (pin passive line (at -10.16 5.08 0) (length 3.81) + (name "A" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -10.16 -5.08 0) (length 3.81) + (name "K" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 10.16 -5.08 180) (length 3.81) + (name "DRAIN" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 10.16 5.08 180) (length 3.81) + (name "DRAIN" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (at 0 3.556 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "global power" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3.3V" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 0 3.556 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "global power" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "+5V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+5V" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:GNDD" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 0 -3.175 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "global power" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"GNDD\" , digital ground" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "GNDD_0_1" + (rectangle (start -1.27 -1.524) (end 1.27 -2.032) + (stroke (width 0.254) (type default)) + (fill (type outline)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 -1.524) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "GNDD_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GNDD" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 158.75 29.21) (diameter 0) (color 0 0 0 0) + (uuid 0209f6d4-c100-4c55-b8c3-302af7fcbe6a) + ) + (junction (at 135.89 54.61) (diameter 0) (color 0 0 0 0) + (uuid 052a653e-4f21-408b-8453-1bdfaacac2e8) + ) + (junction (at 176.53 73.025) (diameter 0) (color 0 0 0 0) + (uuid 0b09a256-e6b2-483a-bd45-df37447d9fbd) + ) + (junction (at 125.73 54.61) (diameter 0) (color 0 0 0 0) + (uuid 115e6afb-82c3-460f-b514-0be88d7583f4) + ) + (junction (at 200.025 48.895) (diameter 0) (color 0 0 0 0) + (uuid 14dd5d77-9a59-4062-99bf-035e35add17c) + ) + (junction (at 138.43 164.465) (diameter 0) (color 0 0 0 0) + (uuid 21f248ad-d866-4c6f-8d3e-f931299e8adf) + ) + (junction (at 103.505 29.21) (diameter 0) (color 0 0 0 0) + (uuid 22293d6a-701e-409c-a55a-d57c497fd7c1) + ) + (junction (at 171.45 29.21) (diameter 0) (color 0 0 0 0) + (uuid 286af9bd-a741-403c-8c18-17abde00f09e) + ) + (junction (at 107.315 143.51) (diameter 0) (color 0 0 0 0) + (uuid 2fd33476-0fe8-4a21-ad92-4348244f18fb) + ) + (junction (at 120.65 125.73) (diameter 0) (color 0 0 0 0) + (uuid 30ca1a8f-6dc4-4be1-a8a9-8b0ee7c67d40) + ) + (junction (at 207.645 48.895) (diameter 0) (color 0 0 0 0) + (uuid 34dc0934-3e51-468e-8088-88fa7ed8b463) + ) + (junction (at 162.56 67.945) (diameter 0) (color 0 0 0 0) + (uuid 35c5e579-1f49-4126-ada3-e4e22ddfc194) + ) + (junction (at 100.33 164.465) (diameter 0) (color 0 0 0 0) + (uuid 36e68934-4d68-46d0-87c8-6b683d98f289) + ) + (junction (at 85.09 125.73) (diameter 0) (color 0 0 0 0) + (uuid 453aafd2-853c-4ff9-9e6d-0c736a946dfb) + ) + (junction (at 151.13 29.21) (diameter 0) (color 0 0 0 0) + (uuid 49b6e848-5ef9-4de7-8cca-0e685e212641) + ) + (junction (at 135.89 33.655) (diameter 0) (color 0 0 0 0) + (uuid 4e7b4e9b-7696-4445-93dd-4141cc4c1034) + ) + (junction (at 200.025 41.275) (diameter 0) (color 0 0 0 0) + (uuid 55dc8677-1de2-4fa0-a28d-5452f327115e) + ) + (junction (at 90.805 54.61) (diameter 0) (color 0 0 0 0) + (uuid 5e7097f0-5fa8-48b8-86af-7cc3705be441) + ) + (junction (at 146.05 48.895) (diameter 0) (color 0 0 0 0) + (uuid 6810d89a-5917-40df-9c3a-63ff30b2d0d5) + ) + (junction (at 53.34 143.51) (diameter 0) (color 0 0 0 0) + (uuid 6b87f6f9-c5b3-4a2f-8bdf-be4d50fd0be7) + ) + (junction (at 135.89 95.885) (diameter 0) (color 0 0 0 0) + (uuid 955033d9-683a-4f76-8dbc-7384f25d0203) + ) + (junction (at 207.645 41.275) (diameter 0) (color 0 0 0 0) + (uuid a7812b2c-f88f-4283-ad2d-d8f2c01294e3) + ) + (junction (at 64.77 164.465) (diameter 0) (color 0 0 0 0) + (uuid c6e5c095-86eb-472f-8457-40599b6907e2) + ) + (junction (at 215.265 48.895) (diameter 0) (color 0 0 0 0) + (uuid cab30cbc-0799-4ccb-b17c-0914ea80acf3) + ) + (junction (at 215.265 41.275) (diameter 0) (color 0 0 0 0) + (uuid d6679403-4179-48c4-b299-9d1eab0fce0f) + ) + (junction (at 166.37 48.895) (diameter 0) (color 0 0 0 0) + (uuid e22ca813-80c4-44a8-a6bd-fa5ce10a9972) + ) + (junction (at 103.505 26.67) (diameter 0) (color 0 0 0 0) + (uuid e8f7e59a-76da-407c-ad63-0b6ccd431aa3) + ) + (junction (at 140.97 29.21) (diameter 0) (color 0 0 0 0) + (uuid f4ecb3c8-18ee-4ec4-b944-2d36eecfd7ee) + ) + (junction (at 135.89 21.59) (diameter 0) (color 0 0 0 0) + (uuid ff836dc7-7d3f-4550-8944-6493fa16414c) + ) + + (wire (pts (xy 106.045 75.565) (xy 220.345 75.565)) + (stroke (width 0) (type default)) + (uuid 004364d3-ce61-492c-bde9-cdf8f59caee4) + ) + (wire (pts (xy 108.585 73.025) (xy 106.045 73.025)) + (stroke (width 0) (type default)) + (uuid 022508ca-76c9-4fc3-b287-961ab5033f68) + ) + (wire (pts (xy 138.43 164.465) (xy 158.75 164.465)) + (stroke (width 0) (type default)) + (uuid 03813565-2b56-42dc-ad61-9083fb263da7) + ) + (wire (pts (xy 113.665 80.645) (xy 106.045 80.645)) + (stroke (width 0) (type default)) + (uuid 043d4dcf-6179-42f9-94b3-92c2a1691dea) + ) + (wire (pts (xy 135.89 33.655) (xy 138.43 33.655)) + (stroke (width 0) (type default)) + (uuid 061247e2-bd48-4efa-9d86-53fe7686f952) + ) + (wire (pts (xy 57.15 50.8) (xy 57.15 57.785)) + (stroke (width 0) (type default)) + (uuid 06ba9586-639b-4186-acf3-fa3be69f91c9) + ) + (wire (pts (xy 217.805 118.745) (xy 217.805 140.335)) + (stroke (width 0) (type default)) + (uuid 099e3215-e888-4688-8ec3-224d94a994f6) + ) + (wire (pts (xy 162.56 67.945) (xy 176.53 67.945)) + (stroke (width 0) (type default)) + (uuid 0c5fc724-d26d-438a-978b-83e78fcf8aa3) + ) + (wire (pts (xy 147.955 78.105) (xy 151.13 78.105)) + (stroke (width 0) (type default)) + (uuid 0d002a59-3664-4175-8471-07a7ee96e612) + ) + (wire (pts (xy 176.53 73.025) (xy 176.53 70.485)) + (stroke (width 0) (type default)) + (uuid 0e789c56-f795-4ca1-8bc3-af0bf9969605) + ) + (wire (pts (xy 120.65 93.345) (xy 120.65 98.425)) + (stroke (width 0) (type default)) + (uuid 11bd2574-5952-44a1-8c44-3f95972084b0) + ) + (wire (pts (xy 189.23 67.945) (xy 195.58 67.945)) + (stroke (width 0) (type default)) + (uuid 15d25f39-4cf6-4081-b1e4-505554c3420a) + ) + (wire (pts (xy 179.07 29.21) (xy 179.07 33.655)) + (stroke (width 0) (type default)) + (uuid 16066680-d389-4c74-860c-5b3ca20a604b) + ) + (wire (pts (xy 28.575 137.16) (xy 28.575 130.81)) + (stroke (width 0) (type default)) + (uuid 1741d803-04e5-4059-8461-56d866679a54) + ) + (wire (pts (xy 146.05 24.13) (xy 146.05 33.655)) + (stroke (width 0) (type default)) + (uuid 174bd81f-18da-4a3f-af2c-b3a2e9b406e0) + ) + (wire (pts (xy 120.65 139.065) (xy 120.65 146.685)) + (stroke (width 0) (type default)) + (uuid 19d789af-a67f-4bc3-be3a-9695cdec7081) + ) + (wire (pts (xy 171.45 29.21) (xy 176.53 29.21)) + (stroke (width 0) (type default)) + (uuid 1b150744-6389-4505-a693-fc7895be5f9b) + ) + (wire (pts (xy 118.745 161.925) (xy 120.65 161.925)) + (stroke (width 0) (type default)) + (uuid 1b670e30-fcbc-4c9a-9cf7-05aa4a2413c1) + ) + (wire (pts (xy 90.805 54.61) (xy 90.805 57.785)) + (stroke (width 0) (type default)) + (uuid 1c01bf59-143f-4b4b-bf85-29a63840a170) + ) + (wire (pts (xy 215.265 48.895) (xy 215.265 77.47)) + (stroke (width 0) (type default)) + (uuid 1c9b3b11-9eba-4ea0-9ea2-977a9b29a051) + ) + (wire (pts (xy 173.99 31.115) (xy 222.885 31.115)) + (stroke (width 0) (type default)) + (uuid 202db1e5-082d-4d49-9748-d6152366aafc) + ) + (wire (pts (xy 190.5 88.9) (xy 215.265 88.9)) + (stroke (width 0) (type default)) + (uuid 216eaad0-97d8-439d-b421-2c17e40d95a3) + ) + (wire (pts (xy 85.09 125.73) (xy 120.65 125.73)) + (stroke (width 0) (type default)) + (uuid 221ea228-7dc8-40c7-be23-9d422bda8d86) + ) + (wire (pts (xy 176.53 51.435) (xy 192.405 51.435)) + (stroke (width 0) (type default)) + (uuid 24523962-155f-4f03-80a0-3078b98c9c43) + ) + (wire (pts (xy 53.34 143.51) (xy 53.34 130.81)) + (stroke (width 0) (type default)) + (uuid 24b56f97-6b40-4fb8-b9a7-1da827588702) + ) + (wire (pts (xy 195.58 67.945) (xy 195.58 73.025)) + (stroke (width 0) (type default)) + (uuid 262cf104-29d8-45f9-be30-52d1a00d8599) + ) + (wire (pts (xy 158.75 29.21) (xy 158.75 33.655)) + (stroke (width 0) (type default)) + (uuid 28345c06-6d81-470c-b9d0-ebd2d146def3) + ) + (wire (pts (xy 135.89 46.355) (xy 135.89 54.61)) + (stroke (width 0) (type default)) + (uuid 2e75d688-bab5-48bd-8ac8-3be519e64c6a) + ) + (wire (pts (xy 123.19 89.535) (xy 117.475 89.535)) + (stroke (width 0) (type default)) + (uuid 38886305-0cb5-495f-b997-6ca6d89d0fa4) + ) + (wire (pts (xy 159.385 67.945) (xy 162.56 67.945)) + (stroke (width 0) (type default)) + (uuid 389369f1-1da5-4cc7-800d-0f9c54e50c11) + ) + (wire (pts (xy 171.45 29.21) (xy 171.45 33.655)) + (stroke (width 0) (type default)) + (uuid 3abc52d1-830d-455d-8ff1-d7184a94735b) + ) + (wire (pts (xy 133.35 143.51) (xy 133.35 149.225)) + (stroke (width 0) (type default)) + (uuid 3dd61c8f-4978-4a0d-bac7-50202219c91f) + ) + (wire (pts (xy 65.405 39.37) (xy 111.125 39.37)) + (stroke (width 0) (type default)) + (uuid 40780687-8dc1-4570-92f2-6d0e61787deb) + ) + (wire (pts (xy 53.34 143.51) (xy 53.34 149.225)) + (stroke (width 0) (type default)) + (uuid 40ab1a9d-3771-4061-ab87-0e74b9fa82a0) + ) + (wire (pts (xy 162.56 67.945) (xy 162.56 73.025)) + (stroke (width 0) (type default)) + (uuid 429a0530-224f-4ba9-869e-b4c24685d533) + ) + (wire (pts (xy 138.43 139.7) (xy 138.43 164.465)) + (stroke (width 0) (type default)) + (uuid 446a11fb-6ad0-4fd1-9919-ab953240294e) + ) + (wire (pts (xy 162.56 73.025) (xy 164.465 73.025)) + (stroke (width 0) (type default)) + (uuid 46f08c9f-e92a-4163-a228-bc869bd0fb34) + ) + (wire (pts (xy 184.15 46.355) (xy 184.15 48.895)) + (stroke (width 0) (type default)) + (uuid 48d1aabd-655a-48ea-ba2d-22f95ff6c80e) + ) + (wire (pts (xy 135.89 21.59) (xy 135.89 33.655)) + (stroke (width 0) (type default)) + (uuid 48df6734-cb93-40a4-95b8-15a0d873851c) + ) + (wire (pts (xy 158.75 125.73) (xy 158.75 129.54)) + (stroke (width 0) (type default)) + (uuid 4b68ac11-f59b-4491-94c3-8a3fd8450ca6) + ) + (wire (pts (xy 200.025 85.09) (xy 200.025 86.36)) + (stroke (width 0) (type default)) + (uuid 4d3cbe27-03c7-4fbb-bfac-d2dfde12e3e1) + ) + (wire (pts (xy 140.97 95.885) (xy 135.89 95.885)) + (stroke (width 0) (type default)) + (uuid 509dcdb8-ec16-4c1c-9376-71c436c5fc97) + ) + (wire (pts (xy 200.025 48.895) (xy 200.025 77.47)) + (stroke (width 0) (type default)) + (uuid 533abedf-58fd-4cc6-890e-d163ec8c16ff) + ) + (wire (pts (xy 146.05 48.895) (xy 166.37 48.895)) + (stroke (width 0) (type default)) + (uuid 538b17b8-7524-4630-a190-a0f26133e4ea) + ) + (wire (pts (xy 163.83 46.355) (xy 163.83 52.07)) + (stroke (width 0) (type default)) + (uuid 552d05a1-0fa8-46fe-b857-8130d8b68714) + ) + (wire (pts (xy 215.265 88.9) (xy 215.265 85.09)) + (stroke (width 0) (type default)) + (uuid 561340b7-e62e-4a73-b0b8-d0cb42e09c5b) + ) + (wire (pts (xy 117.475 89.535) (xy 117.475 90.805)) + (stroke (width 0) (type default)) + (uuid 5687db6e-d571-47d4-93ce-a60853c68b19) + ) + (wire (pts (xy 108.585 26.67) (xy 108.585 73.025)) + (stroke (width 0) (type default)) + (uuid 57306787-1552-4a85-bae6-4798a95fdcc5) + ) + (wire (pts (xy 28.575 120.015) (xy 28.575 125.73)) + (stroke (width 0) (type default)) + (uuid 5a3b51a7-ee3c-4318-9fa4-979cd0a4332e) + ) + (wire (pts (xy 83.185 159.385) (xy 85.09 159.385)) + (stroke (width 0) (type default)) + (uuid 5b50561c-5ea1-43a2-88ed-332a6a0f9f9a) + ) + (wire (pts (xy 174.625 73.025) (xy 176.53 73.025)) + (stroke (width 0) (type default)) + (uuid 5c38fbd5-995b-4b3c-a560-ad5f66a65e8a) + ) + (wire (pts (xy 140.97 29.21) (xy 140.97 33.655)) + (stroke (width 0) (type default)) + (uuid 6075d7a5-f876-4719-ae5a-aa7839a3e914) + ) + (wire (pts (xy 53.34 143.51) (xy 107.315 143.51)) + (stroke (width 0) (type default)) + (uuid 642a9e69-d45a-4bc4-a986-2679f417c704) + ) + (wire (pts (xy 173.99 33.655) (xy 173.99 31.115)) + (stroke (width 0) (type default)) + (uuid 6887cab3-87ca-4926-bab3-b1116bff8c2c) + ) + (wire (pts (xy 113.03 93.345) (xy 106.045 93.345)) + (stroke (width 0) (type default)) + (uuid 6a429e11-c1f8-4277-b83a-1fde84edc95b) + ) + (wire (pts (xy 135.89 54.61) (xy 162.56 54.61)) + (stroke (width 0) (type default)) + (uuid 6ae417e4-b6d9-4467-b26a-e7ae3ca95941) + ) + (wire (pts (xy 200.025 41.275) (xy 200.025 48.895)) + (stroke (width 0) (type default)) + (uuid 6bc91f82-3536-416e-843b-980c13886db5) + ) + (wire (pts (xy 151.13 29.21) (xy 151.13 33.655)) + (stroke (width 0) (type default)) + (uuid 6c10f99e-a55e-4a6c-bb39-af48a5c42699) + ) + (wire (pts (xy 107.315 143.51) (xy 133.35 143.51)) + (stroke (width 0) (type default)) + (uuid 6eddaf64-f641-4414-b40d-518e5720afa8) + ) + (wire (pts (xy 85.09 164.465) (xy 64.77 164.465)) + (stroke (width 0) (type default)) + (uuid 7003dddc-e173-456e-a0f4-6a4a425cd4d5) + ) + (wire (pts (xy 106.045 78.105) (xy 140.335 78.105)) + (stroke (width 0) (type default)) + (uuid 71c77b68-ab09-4226-91dd-1593d2d7ec95) + ) + (wire (pts (xy 176.53 46.355) (xy 176.53 51.435)) + (stroke (width 0) (type default)) + (uuid 721f99f3-749a-4acb-bdb5-1cdb9cd61e8c) + ) + (wire (pts (xy 113.665 26.67) (xy 113.665 43.815)) + (stroke (width 0) (type default)) + (uuid 77aed28a-3f72-4c65-8a5e-b63ad1af1692) + ) + (wire (pts (xy 192.405 83.82) (xy 190.5 83.82)) + (stroke (width 0) (type default)) + (uuid 795c9841-6352-496b-97fe-2c99df77271d) + ) + (wire (pts (xy 83.185 161.925) (xy 85.09 161.925)) + (stroke (width 0) (type default)) + (uuid 7b07951f-4678-4f85-a178-09ff9099be6a) + ) + (wire (pts (xy 220.345 59.69) (xy 220.345 62.865)) + (stroke (width 0) (type default)) + (uuid 7b3e0497-cef7-42b3-8406-20617d6fcb07) + ) + (wire (pts (xy 85.09 125.73) (xy 85.09 129.54)) + (stroke (width 0) (type default)) + (uuid 7d6bb38c-0926-4c93-88f1-2165f2afaba6) + ) + (wire (pts (xy 103.505 26.67) (xy 108.585 26.67)) + (stroke (width 0) (type default)) + (uuid 7e43deb1-3bdb-4bb0-838d-bfc023aa6ed8) + ) + (wire (pts (xy 116.205 24.13) (xy 146.05 24.13)) + (stroke (width 0) (type default)) + (uuid 7e721221-5c99-4a6d-a26b-acc6b9c8567b) + ) + (wire (pts (xy 127 94.615) (xy 127 106.045)) + (stroke (width 0) (type default)) + (uuid 7efed8db-1383-4a41-8c85-605322517dc6) + ) + (wire (pts (xy 151.13 95.885) (xy 151.13 106.045)) + (stroke (width 0) (type default)) + (uuid 8518717f-640c-4e09-a1b4-35e8a8b13812) + ) + (wire (pts (xy 113.665 85.725) (xy 130.81 85.725)) + (stroke (width 0) (type default)) + (uuid 86113a10-294f-438a-899e-fe17d644f006) + ) + (wire (pts (xy 125.73 54.61) (xy 135.89 54.61)) + (stroke (width 0) (type default)) + (uuid 86df8ab0-42b3-484f-a985-4fa4b4b2dbd1) + ) + (wire (pts (xy 103.505 31.115) (xy 103.505 29.21)) + (stroke (width 0) (type default)) + (uuid 88f703d0-91ee-42f7-87ff-f0a849fd33f2) + ) + (wire (pts (xy 140.97 29.21) (xy 151.13 29.21)) + (stroke (width 0) (type default)) + (uuid 8b92fb45-fb8a-49a0-a0ca-6556b3dea200) + ) + (wire (pts (xy 239.395 74.295) (xy 239.395 106.045)) + (stroke (width 0) (type default)) + (uuid 8c4c4f18-72bb-462c-9ea9-7400da3f21e4) + ) + (wire (pts (xy 181.61 29.21) (xy 181.61 33.655)) + (stroke (width 0) (type default)) + (uuid 9259700f-4faa-4970-9f50-1a29f770ced2) + ) + (wire (pts (xy 61.595 45.72) (xy 57.15 45.72)) + (stroke (width 0) (type default)) + (uuid 92b215f6-4ca7-412b-a4f6-4bf330fa9c32) + ) + (wire (pts (xy 195.58 73.025) (xy 176.53 73.025)) + (stroke (width 0) (type default)) + (uuid 9ca63dee-91ca-408d-8c08-092e0362a9e1) + ) + (wire (pts (xy 192.405 70.485) (xy 192.405 83.82)) + (stroke (width 0) (type default)) + (uuid 9cf7af1b-a5ec-4772-b7fb-646e2da9213d) + ) + (wire (pts (xy 138.43 164.465) (xy 138.43 177.8)) + (stroke (width 0) (type default)) + (uuid 9e5a87c1-c9a0-4bfe-8e04-1c9d5bc70559) + ) + (wire (pts (xy 200.025 86.36) (xy 190.5 86.36)) + (stroke (width 0) (type default)) + (uuid a3301aea-8ada-45af-ba0d-1994105619c5) + ) + (wire (pts (xy 143.51 26.67) (xy 143.51 33.655)) + (stroke (width 0) (type default)) + (uuid a3b217cb-98ca-4168-9ab5-6fea6ccbb65f) + ) + (wire (pts (xy 156.845 161.925) (xy 158.75 161.925)) + (stroke (width 0) (type default)) + (uuid a562b17a-2e4c-444c-ad2f-f90a501e6f84) + ) + (wire (pts (xy 166.37 48.895) (xy 184.15 48.895)) + (stroke (width 0) (type default)) + (uuid a72dd80d-99ee-4eb4-8bdd-4390f8632988) + ) + (wire (pts (xy 151.13 29.21) (xy 158.75 29.21)) + (stroke (width 0) (type default)) + (uuid a7f3aded-e3c8-4dd2-a9c5-61f0799d23c6) + ) + (wire (pts (xy 64.77 139.7) (xy 64.77 164.465)) + (stroke (width 0) (type default)) + (uuid a8dbca75-64e0-4bee-be9c-63721dae728e) + ) + (wire (pts (xy 135.89 54.61) (xy 135.89 84.455)) + (stroke (width 0) (type default)) + (uuid a9066c33-cd85-48f9-99cf-8321b20d520b) + ) + (wire (pts (xy 120.65 125.73) (xy 158.75 125.73)) + (stroke (width 0) (type default)) + (uuid a99d2f7e-618a-4df1-9965-657c1b08a061) + ) + (wire (pts (xy 106.045 88.265) (xy 113.665 88.265)) + (stroke (width 0) (type default)) + (uuid ab5ba7b6-11da-4808-89ae-9b18c3ba7d6a) + ) + (wire (pts (xy 117.475 90.805) (xy 106.045 90.805)) + (stroke (width 0) (type default)) + (uuid ad3ccf2b-98a4-431e-a74b-44247a1d6585) + ) + (wire (pts (xy 133.35 149.225) (xy 158.75 149.225)) + (stroke (width 0) (type default)) + (uuid b1e3d970-6fa8-4719-8f47-383c5343bf4a) + ) + (wire (pts (xy 173.99 49.53) (xy 173.99 46.355)) + (stroke (width 0) (type default)) + (uuid b33887cc-cec7-437e-8a3b-fb592842995f) + ) + (wire (pts (xy 130.81 85.725) (xy 130.81 89.535)) + (stroke (width 0) (type default)) + (uuid b38107ae-92e1-4b23-8ec6-2ad0a54ae23e) + ) + (wire (pts (xy 106.045 95.885) (xy 135.89 95.885)) + (stroke (width 0) (type default)) + (uuid b51891a2-a231-4a3b-a672-a5a0a8068742) + ) + (wire (pts (xy 207.645 52.705) (xy 207.645 48.895)) + (stroke (width 0) (type default)) + (uuid b5cc786c-d0c3-4279-b9f8-6d6d892ac6cd) + ) + (wire (pts (xy 176.53 73.025) (xy 176.53 106.045)) + (stroke (width 0) (type default)) + (uuid b61461f6-bc48-40c6-9480-3f2ff4556491) + ) + (wire (pts (xy 106.045 67.945) (xy 151.765 67.945)) + (stroke (width 0) (type default)) + (uuid b7ea48a7-8f05-4d7d-bf75-9c698072f687) + ) + (wire (pts (xy 120.65 164.465) (xy 100.33 164.465)) + (stroke (width 0) (type default)) + (uuid bacdb3cc-f1da-467c-86e9-3bbe2cd34874) + ) + (wire (pts (xy 53.34 149.225) (xy 85.09 149.225)) + (stroke (width 0) (type default)) + (uuid bd2b9f66-330d-4448-82d8-26e345be5718) + ) + (wire (pts (xy 103.505 24.13) (xy 103.505 26.67)) + (stroke (width 0) (type default)) + (uuid bf9904aa-89f6-4398-8456-b512c74fef27) + ) + (wire (pts (xy 156.845 159.385) (xy 158.75 159.385)) + (stroke (width 0) (type default)) + (uuid c1075eb0-c0f0-40f2-9f59-92c4bdb8d000) + ) + (wire (pts (xy 240.665 148.59) (xy 240.665 140.335)) + (stroke (width 0) (type default)) + (uuid c1d89d96-2f53-434a-85d0-bb4abf86e51b) + ) + (wire (pts (xy 215.265 41.275) (xy 215.265 48.895)) + (stroke (width 0) (type default)) + (uuid c44a0c27-d074-44eb-84f4-e5dded837752) + ) + (wire (pts (xy 162.56 62.23) (xy 162.56 67.945)) + (stroke (width 0) (type default)) + (uuid c4f4664f-7579-4825-b1ff-2ffdfba7f4f4) + ) + (wire (pts (xy 100.33 139.065) (xy 100.33 164.465)) + (stroke (width 0) (type default)) + (uuid c52e7ff5-e861-4a97-8534-dd17284e475e) + ) + (wire (pts (xy 103.505 29.21) (xy 140.97 29.21)) + (stroke (width 0) (type default)) + (uuid c7d40376-3ed4-411b-ba8c-55006fb78555) + ) + (wire (pts (xy 158.75 139.7) (xy 158.75 146.685)) + (stroke (width 0) (type default)) + (uuid c7f60a54-c8bf-484b-99b8-59a2aa1b074d) + ) + (wire (pts (xy 85.09 139.7) (xy 85.09 146.685)) + (stroke (width 0) (type default)) + (uuid cb7554fa-0303-4a51-8ba4-f21268221970) + ) + (wire (pts (xy 135.89 92.075) (xy 135.89 95.885)) + (stroke (width 0) (type default)) + (uuid cd2fd0e8-1d32-4bab-80c4-22e0bf4dc418) + ) + (wire (pts (xy 135.89 21.59) (xy 103.505 21.59)) + (stroke (width 0) (type default)) + (uuid d10aea56-d7cb-40fe-8cf8-6413888b778d) + ) + (wire (pts (xy 158.75 29.21) (xy 171.45 29.21)) + (stroke (width 0) (type default)) + (uuid d3e36680-fc21-4ff9-bd0c-f1ea0fc794db) + ) + (wire (pts (xy 146.05 46.355) (xy 146.05 48.895)) + (stroke (width 0) (type default)) + (uuid d43cfdf8-69db-4a9a-b347-404dd6a6dc1b) + ) + (wire (pts (xy 171.45 49.53) (xy 171.45 46.355)) + (stroke (width 0) (type default)) + (uuid d4a9a631-356d-4ef8-94b3-276fc423cd81) + ) + (wire (pts (xy 207.645 41.275) (xy 207.645 48.895)) + (stroke (width 0) (type default)) + (uuid d4d43d4a-01ad-4b45-a944-c4a7e67e3678) + ) + (wire (pts (xy 118.745 159.385) (xy 120.65 159.385)) + (stroke (width 0) (type default)) + (uuid d4df6bba-a3b8-42f8-9943-16405ab2dd9a) + ) + (wire (pts (xy 116.205 45.085) (xy 116.205 83.185)) + (stroke (width 0) (type default)) + (uuid d509b5ec-5dcb-461a-a682-8ec15b6bf109) + ) + (wire (pts (xy 48.895 130.81) (xy 53.34 130.81)) + (stroke (width 0) (type default)) + (uuid d5957e28-1ad6-4abb-b93d-8ee592628b02) + ) + (wire (pts (xy 100.33 164.465) (xy 100.33 177.8)) + (stroke (width 0) (type default)) + (uuid d5f7f58f-9c94-48cb-b474-b01889f50237) + ) + (wire (pts (xy 48.895 125.73) (xy 85.09 125.73)) + (stroke (width 0) (type default)) + (uuid d6c175b2-ce2d-448f-9fc8-62583453d880) + ) + (wire (pts (xy 116.205 24.13) (xy 116.205 37.465)) + (stroke (width 0) (type default)) + (uuid d71b36b9-6c52-40fc-a7d4-7e435bfdd5d8) + ) + (wire (pts (xy 189.23 70.485) (xy 192.405 70.485)) + (stroke (width 0) (type default)) + (uuid da2e616c-060c-41ab-a35f-48f0c8ad44d4) + ) + (wire (pts (xy 161.29 20.955) (xy 161.29 33.655)) + (stroke (width 0) (type default)) + (uuid dbf93f9a-bab4-4f6b-9297-dfdbf845eda8) + ) + (wire (pts (xy 107.315 149.225) (xy 120.65 149.225)) + (stroke (width 0) (type default)) + (uuid e148a7c0-a692-415d-a5d7-e99da230378a) + ) + (wire (pts (xy 222.885 31.115) (xy 222.885 41.275)) + (stroke (width 0) (type default)) + (uuid e18416fe-5fc4-49c5-b0f7-134b42a79cc0) + ) + (wire (pts (xy 120.65 128.905) (xy 120.65 125.73)) + (stroke (width 0) (type default)) + (uuid e2c8f219-2266-4635-be71-045ae3adb3e7) + ) + (wire (pts (xy 113.665 88.265) (xy 113.665 85.725)) + (stroke (width 0) (type default)) + (uuid e60c7531-7ddb-4420-a7e7-4ad343d06b43) + ) + (wire (pts (xy 181.61 52.705) (xy 181.61 46.355)) + (stroke (width 0) (type default)) + (uuid e6e1cecc-1923-4f9d-905f-e3658e7ebc19) + ) + (wire (pts (xy 68.58 52.07) (xy 65.405 52.07)) + (stroke (width 0) (type default)) + (uuid e6ff45a9-7c75-4d04-aea7-8dc2b6b0bf4a) + ) + (wire (pts (xy 90.805 106.68) (xy 90.805 103.505)) + (stroke (width 0) (type default)) + (uuid e7d1583e-eb45-4155-80c3-f03fc901e84f) + ) + (wire (pts (xy 107.315 143.51) (xy 107.315 149.225)) + (stroke (width 0) (type default)) + (uuid e981f785-691a-4023-92f0-f5acee5657a6) + ) + (wire (pts (xy 185.42 106.045) (xy 185.42 93.98)) + (stroke (width 0) (type default)) + (uuid ea5fe96a-61f5-4484-b7c9-96966bdb227d) + ) + (wire (pts (xy 192.405 51.435) (xy 192.405 41.275)) + (stroke (width 0) (type default)) + (uuid ea9f515c-f402-4a06-bb69-c0d41cea639f) + ) + (wire (pts (xy 113.665 51.435) (xy 113.665 80.645)) + (stroke (width 0) (type default)) + (uuid ec269cc7-9d03-4d22-b8ba-2403c953fb89) + ) + (wire (pts (xy 113.665 26.67) (xy 143.51 26.67)) + (stroke (width 0) (type default)) + (uuid ef948f4e-b2c6-495b-ae9f-2dec30193009) + ) + (wire (pts (xy 111.125 70.485) (xy 111.125 39.37)) + (stroke (width 0) (type default)) + (uuid f16aaa18-87fa-4136-bc48-5ff8c9693f7a) + ) + (wire (pts (xy 176.53 29.21) (xy 176.53 33.655)) + (stroke (width 0) (type default)) + (uuid f28ce5ee-0309-4266-9f4d-08f32b218e23) + ) + (wire (pts (xy 57.15 35.56) (xy 57.15 40.64)) + (stroke (width 0) (type default)) + (uuid f42e1df7-da1b-480f-8c5f-90cc36ddd6f1) + ) + (wire (pts (xy 239.395 45.72) (xy 239.395 48.895)) + (stroke (width 0) (type default)) + (uuid f7e9cbb7-c618-48a0-8748-2d97fdf11869) + ) + (wire (pts (xy 106.045 70.485) (xy 111.125 70.485)) + (stroke (width 0) (type default)) + (uuid f8b8ac72-88fd-452f-b12d-d18514aad524) + ) + (wire (pts (xy 166.37 48.895) (xy 166.37 46.355)) + (stroke (width 0) (type default)) + (uuid fa359788-2b20-4322-ab20-9e9d1fab5d77) + ) + (wire (pts (xy 179.07 52.705) (xy 179.07 46.355)) + (stroke (width 0) (type default)) + (uuid fa48202a-7bbf-4bed-9254-cf1c4c5590b2) + ) + (wire (pts (xy 116.205 83.185) (xy 106.045 83.185)) + (stroke (width 0) (type default)) + (uuid fdd320f2-1be5-4212-b6b4-00c3b9d5e023) + ) + (wire (pts (xy 64.77 164.465) (xy 64.77 177.8)) + (stroke (width 0) (type default)) + (uuid fdd94f5a-d64f-4d9d-b0f9-a4e4e5ae7e93) + ) + (wire (pts (xy 90.805 54.61) (xy 125.73 54.61)) + (stroke (width 0) (type default)) + (uuid febb7ba2-94e6-4522-80c3-8a49ea9d3a90) + ) + (wire (pts (xy 184.15 29.21) (xy 184.15 33.655)) + (stroke (width 0) (type default)) + (uuid ffc11667-3aec-4936-b2ad-a3d83e9b947d) + ) + + (global_label "MISO" (shape input) (at 125.73 78.105 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0c48eed9-14bc-4509-92cb-f07d03414564) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 125.73 70.5236 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "PRi IR in" (shape input) (at 220.345 59.69 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 17635d47-6d40-4ae5-bbb5-8617aabcba05) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 232.0388 59.69 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "R in" (shape input) (at 156.845 161.925 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1e3396e1-b5de-4400-8924-f8583c853d80) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 149.8684 161.925 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "RST" (shape input) (at 135.89 95.885 270) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 22faabd6-914f-4c12-8c7e-13eeb3fbb759) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 135.89 102.3173 90) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "MOSI" (shape input) (at 113.665 72.39 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 26835fa8-b412-4593-bdf8-b151cf574475) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 121.2464 72.39 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "L in" (shape input) (at 83.185 159.385 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 39a67217-eb7f-431a-ad98-1db3fd23f0aa) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 76.4503 159.385 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "L in" (shape input) (at 118.745 159.385 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 50165569-cacb-4a57-9970-3e44e08d9f3d) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 112.0103 159.385 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "MISO" (shape input) (at 225.425 127.635 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 509b7732-5b83-4657-a258-8106bc6a97f4) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 225.425 120.0536 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "R in" (shape input) (at 200.025 86.36 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 5967608d-e568-4b91-bc6d-4760eb2129aa) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 207.0016 86.36 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "MOSI" (shape input) (at 227.965 127.635 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 60af12dd-85cd-41cf-9608-028e379d2641) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 227.965 120.0536 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "RPi IR out" (shape input) (at 68.58 52.07 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 63ff87e8-fdb2-473f-841f-ac50073e80a9) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 81.5437 52.07 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "L in" (shape input) (at 156.845 159.385 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 67a6a3f7-ff0a-406d-bbc7-4e12c45cdb65) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 150.1103 159.385 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "L in" (shape input) (at 215.265 88.9 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6b79f69c-d75b-4dd7-b8bd-88326acc996f) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 221.9997 88.9 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "SCK" (shape input) (at 230.505 127.635 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 827790b2-08a1-494c-a264-15fef3f38f34) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 230.505 120.9003 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "R in" (shape input) (at 83.185 161.925 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid b2f6f19b-00e5-47a9-a8d6-649936cb8790) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 76.2084 161.925 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "SCK" (shape input) (at 109.855 93.345 270) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d2848196-1555-41df-8b0f-e074e4816715) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 109.855 100.0797 90) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "RPi IR out" (shape input) (at 163.83 52.07 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d57a4207-7464-4a68-a344-3683740957a8) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 150.8663 52.07 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "PRi IR in" (shape input) (at 161.29 20.955 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d9d40323-72ed-4b47-91fe-507e15d8da85) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 149.5962 20.955 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "RST" (shape input) (at 233.045 127.635 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid df1c3b6f-35c9-46b2-995a-b30ccbe2c135) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 233.045 121.2027 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "R in" (shape input) (at 118.745 161.925 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid df2b1ab4-6664-471a-8bed-5b0fcccdde2a) + (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 111.7684 161.925 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + + (symbol (lib_id "power:+5V") (at 135.89 21.59 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 022605b9-4424-4d82-bc33-8a550f57257e) + (property "Reference" "#PWR01" (at 135.89 25.4 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 135.89 16.51 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 135.89 21.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 135.89 21.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d2198b08-f307-4648-8d23-ec3cf6db0346)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR01") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+3.3V") (at 90.805 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 038173b8-ee13-4aa7-9f67-9f764966b361) + (property "Reference" "#PWR07" (at 90.805 58.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (at 90.805 49.53 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 90.805 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 90.805 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 86460406-01ed-4c94-a5be-c13094efa700)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR07") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "dk_Solid-State-Relays:TLP222AF") (at 74.93 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 087145e8-4d44-4643-b918-e128740d1c2c) + (property "Reference" "RLY3" (at 74.93 121.285 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TLP222AF" (at 74.93 123.825 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "MY:VSON4" (at 80.01 129.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2" (at 80.01 127 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Digi-Key_PN" "TLP222AF-ND" (at 80.01 124.46 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "MPN" "TLP222AF" (at 80.01 121.92 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Category" "Relays" (at 80.01 119.38 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Family" "Solid State Relays" (at 80.01 116.84 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Datasheet_Link" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2" (at 80.01 114.3 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Detail_Page" "/product-detail/en/toshiba-semiconductor-and-storage/TLP222AF/TLP222AF-ND/871243" (at 80.01 111.76 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Description" "SSR RELAY SPST-NO 500MA 0-60V" (at 80.01 109.22 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Manufacturer" "Toshiba Semiconductor and Storage" (at 80.01 106.68 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Status" "Active" (at 80.01 104.14 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (pin "4" (uuid d02efbbf-7858-47c0-b404-50692aa43124)) + (pin "3" (uuid 0257e7d4-a48b-4a0a-9bfd-a95499cb1721)) + (pin "1" (uuid 66189ccc-ad5a-4e43-9a54-e4732a78fc35)) + (pin "2" (uuid 88047324-7a83-4567-b0c0-85afc8f24e42)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "RLY3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 184.15 24.13 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 09a5c94e-f094-47b5-a3b1-889070f278d3) + (property "Reference" "J3" (at 184.15 21.59 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "~" (at 181.61 22.86 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_1" (at 184.15 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 184.15 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1d206f9c-d696-4d46-98d5-d70e1ad070db)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 171.45 54.61 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 09d91f72-cf46-4f0b-8d3a-35509deadddf) + (property "Reference" "J6" (at 167.64 53.34 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "~" (at 173.99 55.88 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_1" (at 171.45 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 171.45 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b8d40708-8ca2-4390-b643-75e8f3f9511d)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J6") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_02x20_Odd_Even") (at 158.75 41.275 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 14d8284e-fe7f-4d80-a19e-1e9aa883c12b) + (property "Reference" "J5" (at 133.35 38.735 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "RPi" (at 133.35 41.275 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:Raspberry_Pi_Zero" (at 158.75 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 158.75 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "4" (uuid 1f57665f-e930-49f0-a029-0718db028b76)) + (pin "22" (uuid f74b046a-3ef9-4dfd-a43c-53becc730ff4)) + (pin "11" (uuid c500662c-29e9-4d32-a517-cd6e20cbdc46)) + (pin "6" (uuid 5ca46660-0f6f-47aa-86e8-4f7cc631722a)) + (pin "17" (uuid fd713585-4a54-4f9e-8a8b-4d8632f1c8dc)) + (pin "40" (uuid 8647b6e8-8cd8-437d-a151-8f925de241aa)) + (pin "5" (uuid 23923ec1-16f7-4044-89ad-7500139a240b)) + (pin "25" (uuid eb3f44ae-8c4d-4b26-9f71-8c0cb4eaf386)) + (pin "26" (uuid 0f5ac935-919b-462b-b2f7-cf96f965fdab)) + (pin "3" (uuid 31cb19a6-fb9e-4970-8a42-0d4aa79a99ae)) + (pin "38" (uuid a0e9ad48-9855-4197-92ad-74df4c0ca692)) + (pin "33" (uuid 7638704b-213d-4a0d-9482-f5a9b274dd92)) + (pin "23" (uuid bf578472-5560-4382-b2f8-88c6cad89f35)) + (pin "8" (uuid 9933a677-1166-4d86-bc19-e3935a5ba077)) + (pin "27" (uuid f00e82c5-b83e-4930-b201-183af6dd693c)) + (pin "24" (uuid f15e355f-2826-46b5-a2e5-ba27b56e1af6)) + (pin "29" (uuid 104301b8-61af-4abf-abe2-76cff64a75ea)) + (pin "7" (uuid add658ad-e633-4038-95f3-3f5863d62a77)) + (pin "18" (uuid 8c439d59-95ea-4074-af12-c869a4268a66)) + (pin "31" (uuid b4baad72-1096-4a1a-8f78-8c1f9c540c64)) + (pin "34" (uuid f201c67c-f8c6-4a73-817b-0c3bec29be09)) + (pin "35" (uuid ec89899c-3e56-4185-915d-6d6d15f36289)) + (pin "36" (uuid da625310-f019-4d90-bd63-dd88e0d65b5f)) + (pin "37" (uuid bbc0496d-d9bc-4037-a9de-bb1dbe6d6b06)) + (pin "1" (uuid 2743af8e-7295-4fd7-b56a-944bd7673a88)) + (pin "2" (uuid af01770a-6041-44f3-803b-50a512a5ba81)) + (pin "19" (uuid 73e69ed9-3403-426e-a6f9-c26ef21d7f16)) + (pin "16" (uuid 6a827b30-299c-4591-8696-64fc8231cdc1)) + (pin "32" (uuid a12d0188-7c5a-451d-95a8-bf910bc30d51)) + (pin "21" (uuid fb52f08e-cb6e-4b83-a736-b706db875bd5)) + (pin "39" (uuid 2e062f30-c8d5-44b6-a220-83ea66235251)) + (pin "9" (uuid 1f0686a4-51ee-46eb-a04b-c941f3d5a6fa)) + (pin "20" (uuid 47351d33-6a3e-430d-a314-a3260a5c8f35)) + (pin "10" (uuid 2939a2e0-1ee3-45a5-90b1-aa8b07b48681)) + (pin "28" (uuid f846dd2b-1b33-4ed3-8ed7-4aee0a0d1e13)) + (pin "30" (uuid f5db1085-c612-4884-a711-3b3655ac2040)) + (pin "15" (uuid fd25a79e-0423-4fc4-ad20-99d28d86b938)) + (pin "14" (uuid 526c4c2d-9a7a-44fb-95c6-c621bf885174)) + (pin "13" (uuid 2379da88-93b1-4f9f-97a8-64ac527c081b)) + (pin "12" (uuid 36850911-0ccb-4441-80fd-700f0b03f0da)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J5") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Converter_DCDC:TME-0505S") (at 38.735 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 15daa4cb-b8da-4c93-b870-a36855791a9b) + (property "Reference" "U3" (at 38.735 118.745 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TME-0505S" (at 38.735 121.285 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Converter_DCDC:Converter_DCDC_TRACO_TME_03xxS_05xxS_12xxS_Single_THT" (at 38.735 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "https://www.tracopower.com/products/tme.pdf" (at 38.735 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "2" (uuid c48b8c56-fab2-4f42-bffb-5dacd25a6a46)) + (pin "3" (uuid 0e8b5d8d-8dff-443c-83ee-e3a3e6f8ff9d)) + (pin "1" (uuid 8a9d5413-0a53-4958-be77-1d37d4b6b73d)) + (pin "4" (uuid 6064e069-2dc3-4c2c-a0cb-268c79a48223)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "U3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 100.33 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 1c011ee5-177d-4663-a9df-2d31f7b3c753) + (property "Reference" "#PWR023" (at 100.33 184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 100.33 181.61 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 100.33 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 100.33 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d629c4fd-f171-43b3-9b89-f674a617487b)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR023") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x11") (at 163.83 159.385 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 21439a0e-e038-4722-a592-42a42584469b) + (property "Reference" "J15" (at 167.64 159.385 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "BT TX" (at 170.18 159.385 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_PinSocket_1.27mm:PinSocket_1x11_P1.27mm_Vertical" (at 163.83 159.385 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 163.83 159.385 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a04e2719-ae36-461b-8bcc-bb753d564ab5)) + (pin "7" (uuid 09a18797-1d26-4161-badc-edc385321205)) + (pin "8" (uuid 889ce922-4e7e-4dc0-aed6-2433a998a08f)) + (pin "9" (uuid 490cf694-fe8d-4778-a698-1d7c7ff6050a)) + (pin "6" (uuid 9ce6be3e-a813-40ea-bd63-95d3f7b39cea)) + (pin "11" (uuid bbe84d0c-3fe3-410b-ae82-6dfabe5858e9)) + (pin "4" (uuid 368081af-a43a-4739-b7a4-77c7a0384ac3)) + (pin "10" (uuid bd15d299-6e34-4a6e-ae5e-c8132d79f9f4)) + (pin "2" (uuid a62a0966-4303-4e21-b1a2-a4643264eff8)) + (pin "3" (uuid dcbcf2fb-8339-4f1b-a1be-d98b891e1bfa)) + (pin "5" (uuid 5a2c0933-740d-4e09-8c67-b38ea7970f67)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J15") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 196.215 41.275 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 21d0e3c9-9f99-4590-ab07-668ab993dcc9) + (property "Reference" "R1" (at 198.12 38.735 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "270" (at 198.12 36.195 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 196.215 43.053 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 196.215 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7776fb37-6bf7-46ca-9474-e374d3e785b8)) + (pin "2" (uuid f0f4b7b2-ba13-4a8b-9611-a3947a29860d)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 181.61 24.13 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 24ce8208-dc03-4436-8fe3-014e24517763) + (property "Reference" "J2" (at 181.61 21.59 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "~" (at 179.07 22.86 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_1" (at 181.61 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 181.61 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2af8e951-223f-4af9-bed6-95af76475852)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Audio:AudioJack3_Ground") (at 185.42 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 28931350-2b03-4395-9c43-b02d0cc1cac3) + (property "Reference" "J11" (at 183.515 77.47 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Audio Video" (at 183.515 80.01 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "MY:Jack_3.5mm_Green_exUSBSND" (at 185.42 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 185.42 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "G" (uuid 1535e6a3-9fcf-4c25-a963-072c69552981)) + (pin "R" (uuid 6f79f67b-b3bd-4504-b4d5-7746324ad99b)) + (pin "T" (uuid fb9c141a-daf3-4b7e-8c09-27691dc1535d)) + (pin "S" (uuid db41b0c5-2408-4841-88ae-7b404e77364e)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J11") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector:AVR-ISP-6") (at 230.505 137.795 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 34dba751-bb4b-4dbf-9d7b-1d96071ce965) + (property "Reference" "J12" (at 214.63 127 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "AVR-ISP-6" (at 217.17 127 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_2x03_P2.54mm_Vertical" (at 229.235 144.145 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" " ~" (at 244.475 170.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "3" (uuid 8496e1e8-9074-4eaa-aad3-d87409c7eb3d)) + (pin "6" (uuid 8fcbc496-275a-4279-8ada-0a96ac68d758)) + (pin "4" (uuid 119c3903-64a2-45a7-8632-0e65faa3efe7)) + (pin "2" (uuid a48be4c1-2743-4803-84b8-262afed3e5a1)) + (pin "1" (uuid 05b2e90d-dcc6-4669-9937-2f18a7f27bf5)) + (pin "5" (uuid 8caa60b3-a22e-40ac-8d38-dd627e771d9c)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J12") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 135.89 88.265 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 36a1b2c2-5d6b-4516-9a38-56084d1f43ab) + (property "Reference" "R1" (at 137.795 86.995 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10K" (at 137.795 89.535 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 134.112 88.265 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 135.89 88.265 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8a6740b4-18a9-4fb3-84ef-371ffb2cfb4d)) + (pin "2" (uuid 470188d7-935b-482f-938a-4cbc18f351d3)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "R1") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R10") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 59.69 129.54 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 3aba7786-52e5-439b-a294-4d245455706d) + (property "Reference" "J18" (at 59.055 131.445 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "~" (at 58.42 132.08 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_1" (at 59.69 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 59.69 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dc51a7dd-ebb7-453c-a786-75fde89ead81)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J18") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 113.665 47.625 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 3dc243ce-d631-4adb-a6e2-1c3e98a5bfa0) + (property "Reference" "R16" (at 115.57 46.355 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "56" (at 115.57 48.895 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 111.887 47.625 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 113.665 47.625 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a0a29ca8-e6e2-4842-92b3-25cf3d4dd009)) + (pin "2" (uuid fbdbae52-a724-4f07-b389-ce9fb5be513f)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R16") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 240.665 148.59 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 3e068dc6-0d06-42f3-801c-c3c1e048e3ee) + (property "Reference" "#PWR021" (at 240.665 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 240.665 152.4 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 240.665 148.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 240.665 148.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f3f6bb97-c07f-43e7-b6ab-21d250b31b62)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR021") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:C_Polarized") (at 215.265 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 3ebfdd3a-6e6b-4560-80c5-923083d794a2) + (property "Reference" "C5" (at 219.075 79.375 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1uF" (at 219.075 81.915 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 216.2302 85.09 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 215.265 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 831246c2-8e23-4d28-a6c9-43623b028df8)) + (pin "2" (uuid bce726a6-db72-44ac-9196-a8b72a1d91b3)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "C5") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:Buzzer") (at 153.67 80.645 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 3fb5f7a9-438b-4d2f-904b-d2b9ad8527c5) + (property "Reference" "BZ1" (at 158.115 79.375 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Buzzer" (at 158.115 81.915 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_2" (at 153.035 78.105 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 153.035 78.105 90) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid bc8c65d6-8320-4f9e-95e8-244cb801c0d2)) + (pin "2" (uuid 3a93bbae-2ebc-4770-873c-b15a6f6872bb)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "BZ1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 138.43 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 3ff19349-0e7f-4e10-921c-0c176814b694) + (property "Reference" "#PWR024" (at 138.43 184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 138.43 181.61 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 138.43 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 138.43 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid bc1fa6a4-68c0-4147-9baa-56167ed0bebf)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR024") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 162.56 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 437b3e0e-17a6-45b2-94da-8038686c73ff) + (property "Reference" "R6" (at 164.465 57.15 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10K" (at 164.465 59.69 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 160.782 58.42 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 162.56 58.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dbf9d3fd-0542-4f47-878c-789612d4a3e3)) + (pin "2" (uuid 1b6ecb30-811e-4277-abcf-ee9343d3d8a8)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R6") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 239.395 106.045 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 46a1fb9d-23d4-445b-995a-b2bf69a15155) + (property "Reference" "#PWR02" (at 239.395 112.395 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 239.395 109.855 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 239.395 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 239.395 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f4ced88c-90f2-4719-bb14-7c02d060431c)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "#PWR02") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR016") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 95.25 128.905 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 4a3fdd6f-108b-4e73-82c9-fb1b5978df55) + (property "Reference" "J17" (at 94.615 130.81 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "~" (at 93.98 131.445 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_1" (at 95.25 128.905 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 95.25 128.905 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 49fc499b-12f1-4894-956f-6ab81fc528dd)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J17") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 146.05 48.895 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 51554f7d-c1d5-4682-8ef1-80c969adf137) + (property "Reference" "#PWR02" (at 146.05 55.245 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 146.05 52.705 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 146.05 48.895 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 146.05 48.895 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 73894667-11dc-4ba3-8253-187e93b86cbf)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "#PWR02") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR05") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 57.15 57.785 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 53dce04f-30c3-43b9-bdbe-04b130747df9) + (property "Reference" "#PWR02" (at 57.15 64.135 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 57.15 61.595 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 57.15 57.785 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 57.15 57.785 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e1f36c8c-f2f5-489f-8c4c-5bc943a3d482)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "#PWR02") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR08") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Switch:SW_SPST") (at 146.05 95.885 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 56d80d70-3251-44b3-b033-0f6831ebeacf) + (property "Reference" "SW1" (at 146.05 89.535 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "RST" (at 146.05 92.075 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Button_Switch_SMD:SW_Push_1P1T_NO_6x6mm_H9.5mm" (at 146.05 95.885 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 146.05 95.885 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8280772c-e774-469b-b59d-f930cdfda227)) + (pin "2" (uuid 8a5d5662-e8e7-4a44-9754-ecc6823ec361)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "SW1") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "SW2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "dk_Infrared-UV-Visible-Emitters:SFH_4545") (at 239.395 51.435 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 57c6abfe-800a-4161-a1af-d62b98b60e66) + (property "Reference" "D1" (at 244.475 52.07 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "SFH_4545" (at 244.475 54.61 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "digikey-footprints:LED_5mm_Radial" (at 244.475 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Datasheet" "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf" (at 247.015 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Digi-Key_PN" "475-2919-ND" (at 249.555 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "MPN" "SFH 4545" (at 252.095 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Category" "Optoelectronics" (at 254.635 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Family" "Infrared, UV, Visible Emitters" (at 257.175 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Datasheet_Link" "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf" (at 259.715 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Detail_Page" "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955" (at 262.255 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Description" "EMITTER IR 950NM 100MA RADIAL" (at 264.795 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Manufacturer" "OSRAM Opto Semiconductors Inc." (at 267.335 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Status" "Active" (at 269.875 56.515 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (pin "2" (uuid 0302ea84-7f52-4145-aa0d-b2f00efa720a)) + (pin "1" (uuid 3d10fcea-b72a-4391-844b-54de6a6fcab6)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "D1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 179.07 57.785 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 599fa365-a648-4f0b-97fc-5520bf071eb8) + (property "Reference" "J8" (at 174.625 58.42 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "~" (at 181.61 59.055 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_1" (at 179.07 57.785 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 179.07 57.785 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 464c494c-0029-4b15-980e-d52feb4f25ff)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J8") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 127 106.045 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 61eb0482-0cb4-453e-856e-2b262ccda17d) + (property "Reference" "#PWR02" (at 127 112.395 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 127 109.855 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 127 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 127 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ace24286-7a26-453e-a6fe-6d8e0423697d)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "#PWR02") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR012") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+3.3V") (at 57.15 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 6828a362-38e2-445e-8c41-54f8451add39) + (property "Reference" "#PWR03" (at 57.15 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (at 57.15 30.48 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 57.15 35.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 57.15 35.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 95e78db7-b8f4-4aa5-b903-2df6b8cb722f)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR03") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 64.77 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 69cdffdb-eb58-4c3b-9357-786f958c8ea4) + (property "Reference" "#PWR022" (at 64.77 184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 64.77 181.61 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 64.77 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 64.77 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 814a849a-b46f-4c50-b598-0e47ff99292f)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR022") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x04") (at 98.425 26.67 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 702f9d50-1ee6-49e5-83d1-9905f0002212) + (property "Reference" "J3" (at 95.25 28.575 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "RF 433mHz" (at 95.25 26.035 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (at 98.425 26.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 98.425 26.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 77fbeacb-6004-4534-8846-667a04698196)) + (pin "2" (uuid b39f4162-6445-42db-94c5-71c2f3ffb144)) + (pin "3" (uuid 50d8702e-16e8-4b30-8dd4-cf63d0b55508)) + (pin "4" (uuid 7cbbfcd9-9976-4beb-b2cb-5f1dcb741b00)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "J3") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J4") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x11") (at 90.17 159.385 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 77dd8bc3-445a-4a00-8c84-bb3b40d6fb78) + (property "Reference" "J13" (at 93.98 159.385 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "BT TX" (at 96.52 159.385 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_PinSocket_1.27mm:PinSocket_1x11_P1.27mm_Vertical" (at 90.17 159.385 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 90.17 159.385 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4a9f4673-bf07-4509-83e3-07083112ba28)) + (pin "7" (uuid 8b0850cc-52ea-4158-b010-8a066fa0f704)) + (pin "8" (uuid 2a20a052-cc41-4845-87e9-e6595a1392f3)) + (pin "9" (uuid 7cb5072b-80af-45f0-a294-3b64acafd1f7)) + (pin "6" (uuid 63130198-1b07-4440-9ad8-2e1876ac8c4a)) + (pin "11" (uuid c46f933d-e99e-4913-bbd3-ebaa12ba1a3d)) + (pin "4" (uuid 9fbd7511-2e70-4495-9dd8-ec091e67a042)) + (pin "10" (uuid 8538e711-9853-435b-937b-5ce1a299f0dd)) + (pin "2" (uuid 5453cf14-82d7-4ab7-a83e-e5d2d2acd842)) + (pin "3" (uuid a317eacf-4646-4efa-9296-c469109b529a)) + (pin "5" (uuid 2aaf08ac-4788-4132-b57c-14e9cc71392e)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J13") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 239.395 60.325 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 7af9a0a0-8812-4648-a488-588369b28382) + (property "Reference" "R1" (at 241.3 59.055 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "51" (at 241.3 61.595 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 237.617 60.325 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 239.395 60.325 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5d5ebd4d-682b-4c79-8e99-fc54c054ae17)) + (pin "2" (uuid 6f239a98-9919-4bba-9fa4-cd9904b9b57b)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "R1") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R5") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:C_Polarized") (at 125.73 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 7c751ae5-72e4-4259-bfda-2ed0746868fa) + (property "Reference" "C1" (at 129.54 58.42 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100uF" (at 127 60.96 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 126.6952 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 125.73 58.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 925e9fe1-227b-4bed-84ec-664aa4a31a1c)) + (pin "2" (uuid 70ebf473-a158-42c5-9284-9eb0bbb357b8)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "C1") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "C3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 211.455 48.895 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 7c78102b-631e-4b79-9a9e-270fb6be24b0) + (property "Reference" "R4" (at 220.345 49.53 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "150" (at 220.345 46.99 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 211.455 50.673 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 211.455 48.895 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 003b9fd8-c66b-4c35-b634-4a7a523c599e)) + (pin "2" (uuid 9c80c1fb-adc2-48af-ad35-e87b74ef56e1)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R4") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Switch:SW_SPST") (at 169.545 73.025 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 7d4f8969-7510-4263-ae4c-cbee0b8eaae6) + (property "Reference" "SW1" (at 169.545 66.675 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "RST" (at 169.545 69.215 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Button_Switch_SMD:SW_Push_1P1T_NO_6x6mm_H9.5mm" (at 169.545 73.025 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 169.545 73.025 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b795a5f6-c654-4503-b6de-72bfc16f3feb)) + (pin "2" (uuid 481d2a72-3a22-4261-8b1a-c7a496a7a93e)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "SW1") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "SW1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 179.07 24.13 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 824ddcf6-19ef-4a3a-9f14-0e214dde1a8e) + (property "Reference" "J1" (at 179.07 21.59 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "~" (at 176.53 22.86 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_1" (at 179.07 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 179.07 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 46e4c8ac-faa5-4265-a542-63617dcf5094)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:C") (at 211.455 41.275 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 832906aa-f215-4447-810f-0fc795d5e458) + (property "Reference" "C2" (at 211.455 34.29 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "33nF" (at 211.455 36.83 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 215.265 40.3098 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 211.455 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 90ee7914-d9e2-4502-9ae3-351187da9505)) + (pin "2" (uuid d599dafd-13b1-43c0-841b-6b05f16257be)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "C2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "dk_Solid-State-Relays:TLP222AF") (at 148.59 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 83a94042-2bf0-4d1b-a56c-2b3d56d69fcf) + (property "Reference" "RLY1" (at 148.59 121.285 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TLP222AF" (at 148.59 123.825 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "MY:VSON4" (at 153.67 129.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2" (at 153.67 127 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Digi-Key_PN" "TLP222AF-ND" (at 153.67 124.46 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "MPN" "TLP222AF" (at 153.67 121.92 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Category" "Relays" (at 153.67 119.38 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Family" "Solid State Relays" (at 153.67 116.84 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Datasheet_Link" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2" (at 153.67 114.3 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Detail_Page" "/product-detail/en/toshiba-semiconductor-and-storage/TLP222AF/TLP222AF-ND/871243" (at 153.67 111.76 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Description" "SSR RELAY SPST-NO 500MA 0-60V" (at 153.67 109.22 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Manufacturer" "Toshiba Semiconductor and Storage" (at 153.67 106.68 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Status" "Active" (at 153.67 104.14 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (pin "4" (uuid bd3e2a32-2a9e-4db9-a34b-5c047715601e)) + (pin "3" (uuid e91dd675-c439-423f-8fac-b96fb3a500aa)) + (pin "1" (uuid 9871cb7a-af3e-4d7a-9765-1938be7a591e)) + (pin "2" (uuid b0574a7a-e538-4c16-b803-037b9a02993b)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "RLY1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 151.13 83.185 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 8519eac0-390c-4aa5-80c7-ecad0ca8ddc8) + (property "Reference" "#PWR02" (at 151.13 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 151.13 86.995 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 151.13 83.185 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 151.13 83.185 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c86989f8-6131-40a1-8d06-6a47f15352db)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "#PWR02") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR010") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 176.53 106.045 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 868a63cc-e58f-4092-bc38-c1409433fa2b) + (property "Reference" "#PWR014" (at 176.53 112.395 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 176.53 109.855 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 176.53 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 176.53 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5b48bae4-901b-40cb-9381-de83231cf6db)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR014") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:C") (at 203.835 41.275 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 87660bc1-4db2-4ad5-86e1-a67d9dca26bd) + (property "Reference" "C1" (at 203.835 34.29 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "33nF" (at 203.835 36.83 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 207.645 40.3098 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 203.835 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4735a030-8b7d-429c-be09-699155008e05)) + (pin "2" (uuid 37eca370-e2b6-4e81-acfd-1f971093880e)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "C1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "MCU_Microchip_ATtiny:ATtiny84-20SS") (at 90.805 80.645 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 88bfe42c-fed6-4a06-a938-e929747261ec) + (property "Reference" "U2" (at 76.835 79.375 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "ATtiny84-20SS" (at 76.835 81.915 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 90.805 80.645 0) + (effects (font (size 1.27 1.27) italic) hide) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc8006.pdf" (at 90.805 80.645 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "4" (uuid 11427ad8-7c8a-48bd-9d5f-a8141b7906e5)) + (pin "7" (uuid 705c4308-5a26-4c80-807a-0b90dee874ad)) + (pin "8" (uuid a34a18dd-3c93-4fce-9632-2cc6e3e31637)) + (pin "6" (uuid b8e9b7a5-080d-4409-9926-8338e92eb82c)) + (pin "9" (uuid 1ee8bb33-d053-476b-923d-04f8bb845497)) + (pin "10" (uuid e64087c2-c716-4829-b6bd-542632256760)) + (pin "3" (uuid 773f022e-5708-4bb4-b9af-84431048f3b8)) + (pin "11" (uuid 6a4668af-f80a-458d-8670-738b4206440d)) + (pin "14" (uuid b817d230-f7ce-45b6-8aac-b0ecaee0f054)) + (pin "2" (uuid f8d7ee7d-c9ef-4417-9850-202959383725)) + (pin "12" (uuid 13ef52a9-4441-41c5-ab43-f2e56ad73b0d)) + (pin "1" (uuid 04820679-a81a-4617-b6db-49d307f7a0f2)) + (pin "13" (uuid 970f8d24-d4b3-4606-8559-636c117974bc)) + (pin "5" (uuid 8a0fc5fb-98a2-4e75-ac66-34b57e41ae1f)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "U2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 125.73 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 8ae0c181-04ef-4e31-94bd-c681629aa4a8) + (property "Reference" "#PWR02" (at 125.73 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 125.73 66.04 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 125.73 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 125.73 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3b27e5ee-2ba5-4bf1-a183-46edeb7aa3e3)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "#PWR02") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR09") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+3.3V") (at 217.805 118.745 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 8f15f296-153a-4770-80cd-4402a4a62d17) + (property "Reference" "#PWR019" (at 217.805 122.555 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (at 217.805 113.665 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 217.805 118.745 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 217.805 118.745 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fe5dcbd5-f7a6-406f-9372-c7513ed11680)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR019") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:Crystal_GND3") (at 127 89.535 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 901b613a-d3bf-4cb9-a644-6de88e8863a4) + (property "Reference" "Y1" (at 127 81.915 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Crystal_GND3" (at 127 84.455 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "MY:Oscillator_SMD_GEYER_KX_3.1x3.7mm" (at 127 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 127 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 218acf7e-9197-4249-9b7e-c8b7fdf9687b)) + (pin "3" (uuid a752cebd-d550-45b9-b593-ef3605c7cceb)) + (pin "2" (uuid 4d81309e-8f89-46e1-af0c-5264a44354ec)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "Y1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:C_Polarized") (at 200.025 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 952734a7-39d2-494f-aea5-2d4e4046f049) + (property "Reference" "C4" (at 203.835 79.375 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1uF" (at 203.835 81.915 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 200.9902 85.09 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 200.025 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fae08468-c5e1-446e-bfc1-c8bca8bbc4af)) + (pin "2" (uuid 2b457610-5e5b-498e-af87-22a43eb5bdd0)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "C4") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 120.65 106.045 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 97c4363a-c78c-41d2-a633-c89817a037e1) + (property "Reference" "#PWR02" (at 120.65 112.395 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 120.65 109.855 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 120.65 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 120.65 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 14cf0594-b0ed-4265-8590-cc55480646fb)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "#PWR02") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR011") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 90.805 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 9eb712fa-ead8-4d35-b8f2-b3bdbc85ff3d) + (property "Reference" "#PWR02" (at 90.805 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 90.805 110.49 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 90.805 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 90.805 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f4b8152c-d204-45da-ba05-a34f57698072)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "#PWR02") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR017") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 65.405 45.72 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid a403513c-21ca-4892-903a-83e01adb76b1) + (property "Reference" "JP1" (at 67.945 44.45 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IR source" (at 67.945 46.99 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (at 65.405 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 65.405 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "2" (uuid 57211bf7-4761-40a8-8d5a-482c42020ce8)) + (pin "1" (uuid 2f9f1ee1-4154-4eeb-8bec-061b9e771c83)) + (pin "3" (uuid 4f5134ff-0b2e-4348-a9c0-fa77520fccff)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "JP1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x11") (at 125.73 159.385 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid a52f613e-e718-4b63-a487-08d167e7c650) + (property "Reference" "J14" (at 129.54 159.385 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "BT TX" (at 132.08 159.385 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_PinSocket_1.27mm:PinSocket_1x11_P1.27mm_Vertical" (at 125.73 159.385 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 125.73 159.385 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 91ecee31-f275-423b-9699-5b82f96a41b2)) + (pin "7" (uuid 4258d272-1c7d-4a70-ac21-139c350f3ffc)) + (pin "8" (uuid 3693e326-ec17-4e87-b977-ef5876fd4d08)) + (pin "9" (uuid 5a760421-6caf-4f36-b368-686d5ffcb044)) + (pin "6" (uuid 2a2f2835-ec1b-47bf-b607-f1dbb1866f35)) + (pin "11" (uuid 36bed7fd-1e76-44b4-b7db-cd3dcc21a5eb)) + (pin "4" (uuid 7176faf2-70a3-428f-ae90-ed0bb73f2fc2)) + (pin "10" (uuid 6d8cc449-adda-4dc5-89a7-8edbd2575a53)) + (pin "2" (uuid 321c6d01-fcb8-47c3-aefe-478bdb9da56d)) + (pin "3" (uuid 4eb89431-e2ca-42d1-bb93-02c74aab56fa)) + (pin "5" (uuid dbfe7179-1db9-4240-8226-548839ba4b07)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J14") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 103.505 31.115 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid a6c3d4fe-3624-454b-8938-f7446062066b) + (property "Reference" "#PWR02" (at 103.505 37.465 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 103.505 34.925 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 103.505 31.115 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 103.505 31.115 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 748fa072-87da-48d0-9876-97f2930e2167)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "#PWR02") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR02") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 116.205 41.275 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid a976f507-ec3f-412c-962e-440a225d06b4) + (property "Reference" "R15" (at 118.11 40.005 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "56" (at 118.11 42.545 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 114.427 41.275 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 116.205 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 607f30f6-f79f-4772-b3a5-3c99ee408f63)) + (pin "2" (uuid f33fd6e5-17b0-4d49-800d-90e3046fe421)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R15") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "dk_Infrared-UV-Visible-Emitters:SFH_4545") (at 120.65 100.965 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid a9c50111-91b0-43a5-afe6-cf5d2d004cd8) + (property "Reference" "D2" (at 125.73 101.6 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "LED" (at 125.73 104.14 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "Diode_SMD:D_0805_2012Metric" (at 125.73 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Datasheet" "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf" (at 128.27 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Digi-Key_PN" "475-2919-ND" (at 130.81 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "MPN" "SFH 4545" (at 133.35 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Category" "Optoelectronics" (at 135.89 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Family" "Infrared, UV, Visible Emitters" (at 138.43 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Datasheet_Link" "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf" (at 140.97 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Detail_Page" "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955" (at 143.51 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Description" "EMITTER IR 950NM 100MA RADIAL" (at 146.05 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Manufacturer" "OSRAM Opto Semiconductors Inc." (at 148.59 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Status" "Active" (at 151.13 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (pin "2" (uuid 3874d18b-dc89-4767-bec4-52fb3c44e0f1)) + (pin "1" (uuid 5541c693-8ef5-401c-a65b-995671275df7)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "D2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 219.075 41.275 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid aba20a81-71cf-4a37-a7ee-c962683b0e90) + (property "Reference" "R2" (at 220.98 38.735 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "270" (at 220.98 36.195 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 219.075 43.053 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 219.075 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e72dedf6-b31e-4dc6-8756-89bee6caf322)) + (pin "2" (uuid 5b6f4333-2c1b-4a17-8824-af9c273e2513)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 116.84 93.345 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid ababd2b2-8d59-4cba-87cc-ef84f8e2cc1d) + (property "Reference" "R1" (at 116.84 86.995 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "320" (at 116.84 89.535 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 116.84 95.123 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 116.84 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 60602272-3794-493e-b7a9-afd57fef54a8)) + (pin "2" (uuid e3407c43-60e0-420a-b322-c83a054c207a)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "R1") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R11") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 227.965 69.215 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid acf61c09-8cc4-4393-8cc2-a83b6afccc41) + (property "Reference" "R8" (at 227.965 63.5 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "10K" (at 227.965 66.04 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 227.965 70.993 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 227.965 69.215 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6d46d8d6-ee27-438a-8740-3e95654b80b3)) + (pin "2" (uuid 1f9cc8de-a348-4bce-ac61-f3b4ed6b5212)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R8") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 173.99 54.61 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid aecc20d8-4258-4e2d-8a29-fa833c7e8b5a) + (property "Reference" "J7" (at 175.26 53.34 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "~" (at 176.53 55.88 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_1" (at 173.99 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 173.99 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f5be9029-7647-4c61-a314-a543cbaad89d)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J7") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 28.575 120.015 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid b3072c99-dcc5-4b20-ba5a-7c281c453a27) + (property "Reference" "#PWR018" (at 28.575 123.825 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 28.575 114.935 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 28.575 120.015 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 28.575 120.015 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d4ef3831-e39a-47d3-b592-b6828ce9391a)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR018") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 28.575 137.16 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid ba3d1af1-7dd1-4614-9d7d-8b942e5fbf51) + (property "Reference" "#PWR020" (at 28.575 143.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 28.575 140.97 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 28.575 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 28.575 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 601ddec3-cb72-468a-af15-ebb798a1ecd4)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR020") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 207.645 52.705 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid bfa59382-212e-464d-bf8e-c24807c4c38a) + (property "Reference" "#PWR06" (at 207.645 59.055 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 207.645 56.515 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 207.645 52.705 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 207.645 52.705 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 16453a6d-c00c-400b-9f7f-cd78b2f4b66e)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR06") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 239.395 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid c9830aad-7f6a-41f1-a33b-a2739666d7b4) + (property "Reference" "#PWR04" (at 239.395 49.53 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 239.395 40.64 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 239.395 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 239.395 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7cd92000-7a7b-4a8e-8826-d6b7ccd74418)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR04") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "dk_Solid-State-Relays:TLP222AF") (at 110.49 133.985 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid cce7e5ec-215a-4b2c-a643-cfe80790dac1) + (property "Reference" "RLY2" (at 110.49 121.285 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TLP222AF" (at 110.49 123.825 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "MY:VSON4" (at 115.57 128.905 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2" (at 115.57 126.365 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Digi-Key_PN" "TLP222AF-ND" (at 115.57 123.825 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "MPN" "TLP222AF" (at 115.57 121.285 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Category" "Relays" (at 115.57 118.745 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Family" "Solid State Relays" (at 115.57 116.205 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Datasheet_Link" "https://toshiba.semicon-storage.com/info/docget.jsp?did=17036&prodName=TLP222A-2" (at 115.57 113.665 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "DK_Detail_Page" "/product-detail/en/toshiba-semiconductor-and-storage/TLP222AF/TLP222AF-ND/871243" (at 115.57 111.125 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Description" "SSR RELAY SPST-NO 500MA 0-60V" (at 115.57 108.585 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Manufacturer" "Toshiba Semiconductor and Storage" (at 115.57 106.045 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (property "Status" "Active" (at 115.57 103.505 0) + (effects (font (size 1.524 1.524)) (justify left) hide) + ) + (pin "4" (uuid 76152cfb-b158-425b-8732-967873ae197e)) + (pin "3" (uuid c341b226-02f1-42c5-ba99-cc42437da583)) + (pin "1" (uuid cfba558b-04cc-410f-a33b-85a53b6dcd7e)) + (pin "2" (uuid af0ef823-5d55-49d3-a456-031c22c8eca5)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "RLY2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 181.61 57.785 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid cebcb502-02ec-44e9-9a7c-c6c29e65b707) + (property "Reference" "J9" (at 183.515 58.42 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "~" (at 184.15 59.055 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_1" (at 181.61 57.785 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 181.61 57.785 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1d177595-a406-4f5b-8d61-52d65a239150)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J9") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 151.13 106.045 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid d520ff39-a109-45a1-8dcf-ddd768942831) + (property "Reference" "#PWR02" (at 151.13 112.395 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 151.13 109.855 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 151.13 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 151.13 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fc8fc30e-714b-485b-8740-ac7e363945ee)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "#PWR02") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR013") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 144.145 78.105 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid dc6fcc58-1947-4005-a7a6-641f0ee571f1) + (property "Reference" "R1" (at 144.145 72.39 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "320" (at 144.145 74.93 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 144.145 76.327 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 144.145 78.105 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6d9878f1-6bda-414d-997a-1bd7cd740328)) + (pin "2" (uuid ee16da59-4476-40c3-b417-37c6b3b72b53)) + (instances + (project "IM_boards_RGBW" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "R1") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R9") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Interface_Optical:TSMP58000") (at 46.99 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid df8262c6-e786-42cb-ad17-ea2dfe88b5eb) + (property "Reference" "U1" (at 45.255 34.925 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TSMP58000" (at 45.255 37.465 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "OptoDevice:Vishay_MINICAST-3Pin" (at 45.72 55.245 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.vishay.com/docs/82485/tsmp58000.pdf" (at 63.5 38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9d7f5a0d-a181-41b9-9f7a-968f83403f20)) + (pin "3" (uuid e03642de-22ed-4f91-9970-c5bd7b6bf771)) + (pin "2" (uuid 798561dc-4918-4b66-a699-26e550359df3)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "U1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 220.345 69.215 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid e0c5c21f-246e-4eb2-8ba7-159ad7993709) + (property "Reference" "JP2" (at 217.805 67.945 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IR source" (at 217.805 70.485 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (at 220.345 69.215 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 220.345 69.215 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "2" (uuid 7dba8096-0268-4b42-b802-50f2f5087ce9)) + (pin "1" (uuid 60a21214-1ffe-4242-9f37-d16ff349b264)) + (pin "3" (uuid eb5534f5-450c-4fbf-9fb8-b7b6a0e8e393)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "JP2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 203.835 48.895 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid e258f76e-7e93-4e60-bbc6-fcb2065329a2) + (property "Reference" "R3" (at 198.755 50.165 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "150" (at 198.755 47.625 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 203.835 50.673 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 203.835 48.895 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 98538162-599c-4cf1-8ddd-9a50cda1db08)) + (pin "2" (uuid c4e15a46-a7aa-4edc-905d-dd8b049b9a9d)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_02x02_Odd_Even") (at 181.61 70.485 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid e6ce2259-2a51-49ba-89b1-1b820f333f4b) + (property "Reference" "J10" (at 182.88 73.66 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "RPi RST + TV" (at 182.88 64.77 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_2x02_P2.54mm_Vertical" (at 181.61 70.485 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 181.61 70.485 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "3" (uuid 8972d13b-85bd-45c3-bb5a-e0ff940cff62)) + (pin "2" (uuid 948d80a3-c583-48b9-b8f6-59860f331019)) + (pin "1" (uuid 02faa78b-bdc8-4b99-92bc-aeb3f73339d7)) + (pin "4" (uuid b5b20ef8-8550-479c-96b0-03b3f439c5aa)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J10") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Transistor_FET:2N7002") (at 236.855 69.215 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid ec70d42a-be6e-4bbd-9d9f-7699269c4dbf) + (property "Reference" "Q1" (at 243.205 67.945 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N7002" (at 243.205 70.485 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 241.935 71.12 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" (at 236.855 69.215 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid f69891f4-8e76-49b9-ae33-5a394408638b)) + (pin "2" (uuid 75b57e6c-4553-47d9-b183-5e0a6cf58f4c)) + (pin "3" (uuid 446204e1-c2b8-475e-88b6-6cd28a2a7795)) + (instances + (project "IM_boards_RGB_Serial" + (path "/5dbd7aef-7ef8-482b-a5f0-996b380cf46b" + (reference "Q1") (unit 1) + ) + ) + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "Q1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 133.35 129.54 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid f30eccc7-c74a-4961-a2ec-e77bca81fc4d) + (property "Reference" "J16" (at 132.715 131.445 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "~" (at 132.08 132.08 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MY:CONTACT_1" (at 133.35 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 133.35 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 277c61fd-fd6d-4f11-9760-f6e118bed5c7)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "J16") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GNDD") (at 185.42 106.045 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid fb0a640c-1b36-4b04-8638-de3dafa6c9c4) + (property "Reference" "#PWR015" (at 185.42 112.395 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GNDD" (at 185.42 109.855 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 185.42 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 185.42 106.045 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8bbdfcc0-002c-4422-a8a1-2fb51d4df192)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "#PWR015") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:R") (at 155.575 67.945 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid fda17c3f-ff2b-4ead-9df2-799060299cbb) + (property "Reference" "R7" (at 155.575 62.23 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "1K" (at 155.575 64.77 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 155.575 69.723 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 155.575 67.945 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 73016b7c-7ae1-48f3-8b2e-a6703bfae32a)) + (pin "2" (uuid ec6b9a7f-6080-41a1-b2b9-517eacae0a6c)) + (instances + (project "RF_RX" + (path "/ee54cef4-ef18-4d84-97cc-91644e7d2a0a" + (reference "R7") (unit 1) + ) + ) + ) + ) + + (sheet_instances + (path "/" (page "1")) + ) +) diff --git a/HARDWARE/RF_RX.net b/HARDWARE/RF_RX.net new file mode 100644 index 0000000..ca42282 --- /dev/null +++ b/HARDWARE/RF_RX.net @@ -0,0 +1,1246 @@ +(export (version "E") + (design + (source "/home/dmitry/Projects/INTERPLAY_MEDIUM/BOARDS/RF_RX/RF_RX/RF_RX.kicad_sch") + (date "Sun 03 Mar 2024 05:45:20 AM CET") + (tool "Eeschema 7.0.11-7.0.11~ubuntu20.04.1") + (sheet (number "1") (name "/") (tstamps "/") + (title_block + (title) + (company) + (rev) + (date) + (source "RF_RX.kicad_sch") + (comment (number "1") (value "")) + (comment (number "2") (value "")) + (comment (number "3") (value "")) + (comment (number "4") (value "")) + (comment (number "5") (value "")) + (comment (number "6") (value "")) + (comment (number "7") (value "")) + (comment (number "8") (value "")) + (comment (number "9") (value ""))))) + (components + (comp (ref "BZ1") + (value "Buzzer") + (footprint "MY:CONTACT_2") + (libsource (lib "Device") (part "Buzzer") (description "Buzzer, polarized")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Buzzer, polarized")) + (property (name "ki_keywords") (value "quartz resonator ceramic")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "3fb5f7a9-438b-4d2f-904b-d2b9ad8527c5")) + (comp (ref "C1") + (value "33nF") + (footprint "Capacitor_SMD:C_0805_2012Metric") + (libsource (lib "Device") (part "C") (description "Unpolarized capacitor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Unpolarized capacitor")) + (property (name "ki_keywords") (value "cap capacitor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "87660bc1-4db2-4ad5-86e1-a67d9dca26bd")) + (comp (ref "C2") + (value "33nF") + (footprint "Capacitor_SMD:C_0805_2012Metric") + (libsource (lib "Device") (part "C") (description "Unpolarized capacitor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Unpolarized capacitor")) + (property (name "ki_keywords") (value "cap capacitor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "832906aa-f215-4447-810f-0fc795d5e458")) + (comp (ref "C3") + (value "100uF") + (footprint "Capacitor_SMD:C_0805_2012Metric") + (libsource (lib "Device") (part "C_Polarized") (description "Polarized capacitor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Polarized capacitor")) + (property (name "ki_keywords") (value "cap capacitor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "7c751ae5-72e4-4259-bfda-2ed0746868fa")) + (comp (ref "C4") + (value "1uF") + (footprint "Capacitor_SMD:C_0805_2012Metric") + (libsource (lib "Device") (part "C_Polarized") (description "Polarized capacitor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Polarized capacitor")) + (property (name "ki_keywords") (value "cap capacitor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "952734a7-39d2-494f-aea5-2d4e4046f049")) + (comp (ref "C5") + (value "1uF") + (footprint "Capacitor_SMD:C_0805_2012Metric") + (libsource (lib "Device") (part "C_Polarized") (description "Polarized capacitor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Polarized capacitor")) + (property (name "ki_keywords") (value "cap capacitor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "3ebfdd3a-6e6b-4560-80c5-923083d794a2")) + (comp (ref "D1") + (value "SFH_4545") + (footprint "digikey-footprints:LED_5mm_Radial") + (datasheet "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (fields + (field (name "Category") "Optoelectronics") + (field (name "DK_Datasheet_Link") "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (field (name "DK_Detail_Page") "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955") + (field (name "Description") "EMITTER IR 950NM 100MA RADIAL") + (field (name "Digi-Key_PN") "475-2919-ND") + (field (name "Family") "Infrared, UV, Visible Emitters") + (field (name "MPN") "SFH 4545") + (field (name "Manufacturer") "OSRAM Opto Semiconductors Inc.") + (field (name "Status") "Active")) + (libsource (lib "dk_Infrared-UV-Visible-Emitters") (part "SFH_4545") (description "EMITTER IR 950NM 100MA RADIAL")) + (property (name "Digi-Key_PN") (value "475-2919-ND")) + (property (name "MPN") (value "SFH 4545")) + (property (name "Category") (value "Optoelectronics")) + (property (name "Family") (value "Infrared, UV, Visible Emitters")) + (property (name "DK_Datasheet_Link") (value "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf")) + (property (name "DK_Detail_Page") (value "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955")) + (property (name "Description") (value "EMITTER IR 950NM 100MA RADIAL")) + (property (name "Manufacturer") (value "OSRAM Opto Semiconductors Inc.")) + (property (name "Status") (value "Active")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "EMITTER IR 950NM 100MA RADIAL")) + (property (name "ki_keywords") (value "475-2919-ND")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "57c6abfe-800a-4161-a1af-d62b98b60e66")) + (comp (ref "D2") + (value "LED") + (footprint "Diode_SMD:D_0805_2012Metric") + (datasheet "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (fields + (field (name "Category") "Optoelectronics") + (field (name "DK_Datasheet_Link") "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (field (name "DK_Detail_Page") "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955") + (field (name "Description") "EMITTER IR 950NM 100MA RADIAL") + (field (name "Digi-Key_PN") "475-2919-ND") + (field (name "Family") "Infrared, UV, Visible Emitters") + (field (name "MPN") "SFH 4545") + (field (name "Manufacturer") "OSRAM Opto Semiconductors Inc.") + (field (name "Status") "Active")) + (libsource (lib "dk_Infrared-UV-Visible-Emitters") (part "SFH_4545") (description "EMITTER IR 950NM 100MA RADIAL")) + (property (name "Digi-Key_PN") (value "475-2919-ND")) + (property (name "MPN") (value "SFH 4545")) + (property (name "Category") (value "Optoelectronics")) + (property (name "Family") (value "Infrared, UV, Visible Emitters")) + (property (name "DK_Datasheet_Link") (value "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf")) + (property (name "DK_Detail_Page") (value "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955")) + (property (name "Description") (value "EMITTER IR 950NM 100MA RADIAL")) + (property (name "Manufacturer") (value "OSRAM Opto Semiconductors Inc.")) + (property (name "Status") (value "Active")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "EMITTER IR 950NM 100MA RADIAL")) + (property (name "ki_keywords") (value "475-2919-ND")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "a9c50111-91b0-43a5-afe6-cf5d2d004cd8")) + (comp (ref "D3") + (value "LED") + (footprint "Diode_SMD:D_0805_2012Metric") + (datasheet "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (fields + (field (name "Category") "Optoelectronics") + (field (name "DK_Datasheet_Link") "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (field (name "DK_Detail_Page") "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955") + (field (name "Description") "EMITTER IR 950NM 100MA RADIAL") + (field (name "Digi-Key_PN") "475-2919-ND") + (field (name "Family") "Infrared, UV, Visible Emitters") + (field (name "MPN") "SFH 4545") + (field (name "Manufacturer") "OSRAM Opto Semiconductors Inc.") + (field (name "Status") "Active")) + (libsource (lib "dk_Infrared-UV-Visible-Emitters") (part "SFH_4545") (description "EMITTER IR 950NM 100MA RADIAL")) + (property (name "Digi-Key_PN") (value "475-2919-ND")) + (property (name "MPN") (value "SFH 4545")) + (property (name "Category") (value "Optoelectronics")) + (property (name "Family") (value "Infrared, UV, Visible Emitters")) + (property (name "DK_Datasheet_Link") (value "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf")) + (property (name "DK_Detail_Page") (value "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955")) + (property (name "Description") (value "EMITTER IR 950NM 100MA RADIAL")) + (property (name "Manufacturer") (value "OSRAM Opto Semiconductors Inc.")) + (property (name "Status") (value "Active")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "EMITTER IR 950NM 100MA RADIAL")) + (property (name "ki_keywords") (value "475-2919-ND")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "8b210fe4-026a-4777-a20b-56e21c0fd8e3")) + (comp (ref "D4") + (value "LED") + (footprint "Diode_SMD:D_0805_2012Metric") + (datasheet "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (fields + (field (name "Category") "Optoelectronics") + (field (name "DK_Datasheet_Link") "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (field (name "DK_Detail_Page") "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955") + (field (name "Description") "EMITTER IR 950NM 100MA RADIAL") + (field (name "Digi-Key_PN") "475-2919-ND") + (field (name "Family") "Infrared, UV, Visible Emitters") + (field (name "MPN") "SFH 4545") + (field (name "Manufacturer") "OSRAM Opto Semiconductors Inc.") + (field (name "Status") "Active")) + (libsource (lib "dk_Infrared-UV-Visible-Emitters") (part "SFH_4545") (description "EMITTER IR 950NM 100MA RADIAL")) + (property (name "Digi-Key_PN") (value "475-2919-ND")) + (property (name "MPN") (value "SFH 4545")) + (property (name "Category") (value "Optoelectronics")) + (property (name "Family") (value "Infrared, UV, Visible Emitters")) + (property (name "DK_Datasheet_Link") (value "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf")) + (property (name "DK_Detail_Page") (value "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955")) + (property (name "Description") (value "EMITTER IR 950NM 100MA RADIAL")) + (property (name "Manufacturer") (value "OSRAM Opto Semiconductors Inc.")) + (property (name "Status") (value "Active")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "EMITTER IR 950NM 100MA RADIAL")) + (property (name "ki_keywords") (value "475-2919-ND")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "0eb345cb-83d1-401d-b79e-6bf4ce9cb023")) + (comp (ref "D5") + (value "LED") + (footprint "Diode_SMD:D_0805_2012Metric") + (datasheet "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (fields + (field (name "Category") "Optoelectronics") + (field (name "DK_Datasheet_Link") "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (field (name "DK_Detail_Page") "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955") + (field (name "Description") "EMITTER IR 950NM 100MA RADIAL") + (field (name "Digi-Key_PN") "475-2919-ND") + (field (name "Family") "Infrared, UV, Visible Emitters") + (field (name "MPN") "SFH 4545") + (field (name "Manufacturer") "OSRAM Opto Semiconductors Inc.") + (field (name "Status") "Active")) + (libsource (lib "dk_Infrared-UV-Visible-Emitters") (part "SFH_4545") (description "EMITTER IR 950NM 100MA RADIAL")) + (property (name "Digi-Key_PN") (value "475-2919-ND")) + (property (name "MPN") (value "SFH 4545")) + (property (name "Category") (value "Optoelectronics")) + (property (name "Family") (value "Infrared, UV, Visible Emitters")) + (property (name "DK_Datasheet_Link") (value "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf")) + (property (name "DK_Detail_Page") (value "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955")) + (property (name "Description") (value "EMITTER IR 950NM 100MA RADIAL")) + (property (name "Manufacturer") (value "OSRAM Opto Semiconductors Inc.")) + (property (name "Status") (value "Active")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "EMITTER IR 950NM 100MA RADIAL")) + (property (name "ki_keywords") (value "475-2919-ND")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "43921684-a4a6-41fe-a2f8-d50c2e2ea488")) + (comp (ref "J1") + (value "~") + (footprint "MY:CONTACT_1") + (libsource (lib "Connector_Generic") (part "Conn_01x01") (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "824ddcf6-19ef-4a3a-9f14-0e214dde1a8e")) + (comp (ref "J2") + (value "~") + (footprint "MY:CONTACT_1") + (libsource (lib "Connector_Generic") (part "Conn_01x01") (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "24ce8208-dc03-4436-8fe3-014e24517763")) + (comp (ref "J3") + (value "~") + (footprint "MY:CONTACT_1") + (libsource (lib "Connector_Generic") (part "Conn_01x01") (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "09a5c94e-f094-47b5-a3b1-889070f278d3")) + (comp (ref "J4") + (value "RF 433mHz") + (footprint "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical") + (libsource (lib "Connector_Generic") (part "Conn_01x04") (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "702f9d50-1ee6-49e5-83d1-9905f0002212")) + (comp (ref "J5") + (value "RPi") + (footprint "MY:Raspberry_Pi_Zero") + (libsource (lib "Connector_Generic") (part "Conn_02x20_Odd_Even") (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "14d8284e-fe7f-4d80-a19e-1e9aa883c12b")) + (comp (ref "J6") + (value "~") + (footprint "MY:CONTACT_1") + (libsource (lib "Connector_Generic") (part "Conn_01x01") (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "09d91f72-cf46-4f0b-8d3a-35509deadddf")) + (comp (ref "J7") + (value "~") + (footprint "MY:CONTACT_1") + (libsource (lib "Connector_Generic") (part "Conn_01x01") (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "aecc20d8-4258-4e2d-8a29-fa833c7e8b5a")) + (comp (ref "J8") + (value "~") + (footprint "MY:CONTACT_1") + (libsource (lib "Connector_Generic") (part "Conn_01x01") (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "599fa365-a648-4f0b-97fc-5520bf071eb8")) + (comp (ref "J9") + (value "~") + (footprint "MY:CONTACT_1") + (libsource (lib "Connector_Generic") (part "Conn_01x01") (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "cebcb502-02ec-44e9-9a7c-c6c29e65b707")) + (comp (ref "J10") + (value "RPi RST + TV") + (footprint "Connector_PinSocket_2.54mm:PinSocket_2x02_P2.54mm_Vertical") + (libsource (lib "Connector_Generic") (part "Conn_02x02_Odd_Even") (description "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "e6ce2259-2a51-49ba-89b1-1b820f333f4b")) + (comp (ref "J11") + (value "Audio Video") + (footprint "MY:Jack_3.5mm_Green_exUSBSND") + (libsource (lib "Connector_Audio") (part "AudioJack3_Ground") (description "Audio Jack, 3 Poles (Stereo / TRS), Grounded Sleeve")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Audio Jack, 3 Poles (Stereo / TRS), Grounded Sleeve")) + (property (name "ki_keywords") (value "audio jack receptacle stereo headphones phones TRS connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "28931350-2b03-4395-9c43-b02d0cc1cac3")) + (comp (ref "J12") + (value "AVR-ISP-6") + (footprint "Connector_PinSocket_2.54mm:PinSocket_2x03_P2.54mm_Vertical") + (datasheet " ~") + (libsource (lib "Connector") (part "AVR-ISP-6") (description "Atmel 6-pin ISP connector")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Atmel 6-pin ISP connector")) + (property (name "ki_keywords") (value "AVR ISP Connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "34dba751-bb4b-4dbf-9d7b-1d96071ce965")) + (comp (ref "J13") + (value "BT TX") + (footprint "Connector_PinSocket_1.27mm:PinSocket_1x11_P1.27mm_Vertical") + (libsource (lib "Connector_Generic") (part "Conn_01x11") (description "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "77dd8bc3-445a-4a00-8c84-bb3b40d6fb78")) + (comp (ref "J14") + (value "BT TX") + (footprint "Connector_PinSocket_1.27mm:PinSocket_1x11_P1.27mm_Vertical") + (libsource (lib "Connector_Generic") (part "Conn_01x11") (description "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "a52f613e-e718-4b63-a487-08d167e7c650")) + (comp (ref "J15") + (value "BT TX") + (footprint "Connector_PinSocket_1.27mm:PinSocket_1x11_P1.27mm_Vertical") + (libsource (lib "Connector_Generic") (part "Conn_01x11") (description "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)")) + (property (name "ki_keywords") (value "connector")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "21439a0e-e038-4722-a592-42a42584469b")) + (comp (ref "JP1") + (value "IR source") + (footprint "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm") + (libsource (lib "Jumper") (part "Jumper_3_Bridged12") (description "Jumper, 3-pole, pins 1+2 closed/bridged")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Jumper, 3-pole, pins 1+2 closed/bridged")) + (property (name "ki_keywords") (value "Jumper SPDT")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "a403513c-21ca-4892-903a-83e01adb76b1")) + (comp (ref "JP2") + (value "IR source") + (footprint "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm") + (libsource (lib "Jumper") (part "Jumper_3_Bridged12") (description "Jumper, 3-pole, pins 1+2 closed/bridged")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Jumper, 3-pole, pins 1+2 closed/bridged")) + (property (name "ki_keywords") (value "Jumper SPDT")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "e0c5c21f-246e-4eb2-8ba7-159ad7993709")) + (comp (ref "Q1") + (value "2N7002") + (footprint "Package_TO_SOT_SMD:SOT-23") + (datasheet "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF") + (libsource (lib "Transistor_FET") (part "2N7002") (description "0.115A Id, 60V Vds, N-Channel MOSFET, SOT-23")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "0.115A Id, 60V Vds, N-Channel MOSFET, SOT-23")) + (property (name "ki_keywords") (value "N-Channel Switching MOSFET")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "ec70d42a-be6e-4bbd-9d9f-7699269c4dbf")) + (comp (ref "R1") + (value "270") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "21d0e3c9-9f99-4590-ab07-668ab993dcc9")) + (comp (ref "R2") + (value "270") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "aba20a81-71cf-4a37-a7ee-c962683b0e90")) + (comp (ref "R3") + (value "150") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "e258f76e-7e93-4e60-bbc6-fcb2065329a2")) + (comp (ref "R4") + (value "150") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "7c78102b-631e-4b79-9a9e-270fb6be24b0")) + (comp (ref "R5") + (value "51") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "7af9a0a0-8812-4648-a488-588369b28382")) + (comp (ref "R6") + (value "10K") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "437b3e0e-17a6-45b2-94da-8038686c73ff")) + (comp (ref "R7") + (value "1K") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "fda17c3f-ff2b-4ead-9df2-799060299cbb")) + (comp (ref "R8") + (value "10K") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "acf61c09-8cc4-4393-8cc2-a83b6afccc41")) + (comp (ref "R9") + (value "320") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "dc6fcc58-1947-4005-a7a6-641f0ee571f1")) + (comp (ref "R10") + (value "10K") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "36a1b2c2-5d6b-4516-9a38-56084d1f43ab")) + (comp (ref "R11") + (value "320") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "ababd2b2-8d59-4cba-87cc-ef84f8e2cc1d")) + (comp (ref "R12") + (value "320") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "10ba6f86-72ba-42c0-becf-7d99f5737e18")) + (comp (ref "R13") + (value "320") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "c5ecc93c-41eb-4902-8a7f-bc1f46ba7031")) + (comp (ref "R14") + (value "320") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "ebb8b5d8-b3ff-4099-abfe-3e6f8763dce9")) + (comp (ref "R15") + (value "56") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "a976f507-ec3f-412c-962e-440a225d06b4")) + (comp (ref "R16") + (value "56") + (footprint "Resistor_SMD:R_0805_2012Metric") + (libsource (lib "Device") (part "R") (description "Resistor")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Resistor")) + (property (name "ki_keywords") (value "R res resistor")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "3dc243ce-d631-4adb-a6e2-1c3e98a5bfa0")) + (comp (ref "SW1") + (value "RST") + (footprint "Button_Switch_SMD:SW_Push_1P1T_NO_6x6mm_H9.5mm") + (libsource (lib "Switch") (part "SW_SPST") (description "Single Pole Single Throw (SPST) switch")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Single Pole Single Throw (SPST) switch")) + (property (name "ki_keywords") (value "switch lever")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "7d4f8969-7510-4263-ae4c-cbee0b8eaae6")) + (comp (ref "SW2") + (value "RST") + (footprint "Button_Switch_SMD:SW_Push_1P1T_NO_6x6mm_H9.5mm") + (libsource (lib "Switch") (part "SW_SPST") (description "Single Pole Single Throw (SPST) switch")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Single Pole Single Throw (SPST) switch")) + (property (name "ki_keywords") (value "switch lever")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "56d80d70-3251-44b3-b033-0f6831ebeacf")) + (comp (ref "U1") + (value "TSMP58000") + (footprint "OptoDevice:Vishay_MINICAST-3Pin") + (datasheet "http://www.vishay.com/docs/82485/tsmp58000.pdf") + (libsource (lib "Interface_Optical") (part "TSMP58000") (description "Photo Module (Amplify&Condition) for PCM Remote Control Systems")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Photo Module (Amplify&Condition) for PCM Remote Control Systems")) + (property (name "ki_keywords") (value "opto IR receiver")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "df8262c6-e786-42cb-ad17-ea2dfe88b5eb")) + (comp (ref "U2") + (value "ATtiny84-20SS") + (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm") + (datasheet "http://ww1.microchip.com/downloads/en/DeviceDoc/doc8006.pdf") + (libsource (lib "MCU_Microchip_ATtiny") (part "ATtiny84-20SS") (description "20MHz, 8kB Flash, 512B SRAM, 512B EEPROM, debugWIRE, SOIC-14")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "20MHz, 8kB Flash, 512B SRAM, 512B EEPROM, debugWIRE, SOIC-14")) + (property (name "ki_keywords") (value "AVR 8bit Microcontroller tinyAVR")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "88bfe42c-fed6-4a06-a938-e929747261ec")) + (comp (ref "U3") + (value "TME-0505S") + (footprint "Converter_DCDC:Converter_DCDC_TRACO_TME_03xxS_05xxS_12xxS_Single_THT") + (datasheet "https://www.tracopower.com/products/tme.pdf") + (libsource (lib "Converter_DCDC") (part "TME-0505S") (description "1W DC/DC converter unregulated, 4.5-5.5V input, 5V output voltage, 200mA output, 1kVDC isolation, SIP-4")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "1W DC/DC converter unregulated, 4.5-5.5V input, 5V output voltage, 200mA output, 1kVDC isolation, SIP-4")) + (property (name "ki_keywords") (value "Traco isolated isolation dc-dc converter not-regulated non-regulated single 1W")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "15daa4cb-b8da-4c93-b870-a36855791a9b")) + (comp (ref "Y1") + (value "Crystal_GND3") + (footprint "MY:Oscillator_SMD_GEYER_KX_3.1x3.7mm") + (libsource (lib "Device") (part "Crystal_GND3") (description "Three pin crystal, GND on pin 3")) + (property (name "Sheetname") (value "")) + (property (name "Sheetfile") (value "RF_RX.kicad_sch")) + (property (name "ki_description") (value "Three pin crystal, GND on pin 3")) + (property (name "ki_keywords") (value "quartz ceramic resonator oscillator")) + (sheetpath (names "/") (tstamps "/")) + (tstamps "901b613a-d3bf-4cb9-a644-6de88e8863a4"))) + (libparts + (libpart (lib "Connector") (part "AVR-ISP-6") + (description "Atmel 6-pin ISP connector") + (docs " ~") + (footprints + (fp "IDC?Header*2x03*") + (fp "Pin?Header*2x03*")) + (fields + (field (name "Reference") "J") + (field (name "Value") "AVR-ISP-6") + (field (name "Datasheet") " ~")) + (pins + (pin (num "1") (name "MISO") (type "passive")) + (pin (num "2") (name "VCC") (type "passive")) + (pin (num "3") (name "SCK") (type "passive")) + (pin (num "4") (name "MOSI") (type "passive")) + (pin (num "5") (name "~{RST}") (type "passive")) + (pin (num "6") (name "GND") (type "passive")))) + (libpart (lib "Connector_Audio") (part "AudioJack3_Ground") + (description "Audio Jack, 3 Poles (Stereo / TRS), Grounded Sleeve") + (docs "~") + (footprints + (fp "Jack*")) + (fields + (field (name "Reference") "J") + (field (name "Value") "AudioJack3_Ground") + (field (name "Datasheet") "~")) + (pins + (pin (num "G") (name "") (type "passive")) + (pin (num "R") (name "") (type "passive")) + (pin (num "S") (name "") (type "passive")) + (pin (num "T") (name "") (type "passive")))) + (libpart (lib "Connector_Generic") (part "Conn_01x01") + (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)") + (docs "~") + (footprints + (fp "Connector*:*_1x??_*")) + (fields + (field (name "Reference") "J") + (field (name "Value") "Conn_01x01") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "Pin_1") (type "passive")))) + (libpart (lib "Connector_Generic") (part "Conn_01x04") + (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)") + (docs "~") + (footprints + (fp "Connector*:*_1x??_*")) + (fields + (field (name "Reference") "J") + (field (name "Value") "Conn_01x04") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "Pin_1") (type "passive")) + (pin (num "2") (name "Pin_2") (type "passive")) + (pin (num "3") (name "Pin_3") (type "passive")) + (pin (num "4") (name "Pin_4") (type "passive")))) + (libpart (lib "Connector_Generic") (part "Conn_01x11") + (description "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)") + (docs "~") + (footprints + (fp "Connector*:*_1x??_*")) + (fields + (field (name "Reference") "J") + (field (name "Value") "Conn_01x11") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "Pin_1") (type "passive")) + (pin (num "2") (name "Pin_2") (type "passive")) + (pin (num "3") (name "Pin_3") (type "passive")) + (pin (num "4") (name "Pin_4") (type "passive")) + (pin (num "5") (name "Pin_5") (type "passive")) + (pin (num "6") (name "Pin_6") (type "passive")) + (pin (num "7") (name "Pin_7") (type "passive")) + (pin (num "8") (name "Pin_8") (type "passive")) + (pin (num "9") (name "Pin_9") (type "passive")) + (pin (num "10") (name "Pin_10") (type "passive")) + (pin (num "11") (name "Pin_11") (type "passive")))) + (libpart (lib "Connector_Generic") (part "Conn_02x02_Odd_Even") + (description "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)") + (docs "~") + (footprints + (fp "Connector*:*_2x??_*")) + (fields + (field (name "Reference") "J") + (field (name "Value") "Conn_02x02_Odd_Even") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "Pin_1") (type "passive")) + (pin (num "2") (name "Pin_2") (type "passive")) + (pin (num "3") (name "Pin_3") (type "passive")) + (pin (num "4") (name "Pin_4") (type "passive")))) + (libpart (lib "Connector_Generic") (part "Conn_02x20_Odd_Even") + (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)") + (docs "~") + (footprints + (fp "Connector*:*_2x??_*")) + (fields + (field (name "Reference") "J") + (field (name "Value") "Conn_02x20_Odd_Even") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "Pin_1") (type "passive")) + (pin (num "2") (name "Pin_2") (type "passive")) + (pin (num "3") (name "Pin_3") (type "passive")) + (pin (num "4") (name "Pin_4") (type "passive")) + (pin (num "5") (name "Pin_5") (type "passive")) + (pin (num "6") (name "Pin_6") (type "passive")) + (pin (num "7") (name "Pin_7") (type "passive")) + (pin (num "8") (name "Pin_8") (type "passive")) + (pin (num "9") (name "Pin_9") (type "passive")) + (pin (num "10") (name "Pin_10") (type "passive")) + (pin (num "11") (name "Pin_11") (type "passive")) + (pin (num "12") (name "Pin_12") (type "passive")) + (pin (num "13") (name "Pin_13") (type "passive")) + (pin (num "14") (name "Pin_14") (type "passive")) + (pin (num "15") (name "Pin_15") (type "passive")) + (pin (num "16") (name "Pin_16") (type "passive")) + (pin (num "17") (name "Pin_17") (type "passive")) + (pin (num "18") (name "Pin_18") (type "passive")) + (pin (num "19") (name "Pin_19") (type "passive")) + (pin (num "20") (name "Pin_20") (type "passive")) + (pin (num "21") (name "Pin_21") (type "passive")) + (pin (num "22") (name "Pin_22") (type "passive")) + (pin (num "23") (name "Pin_23") (type "passive")) + (pin (num "24") (name "Pin_24") (type "passive")) + (pin (num "25") (name "Pin_25") (type "passive")) + (pin (num "26") (name "Pin_26") (type "passive")) + (pin (num "27") (name "Pin_27") (type "passive")) + (pin (num "28") (name "Pin_28") (type "passive")) + (pin (num "29") (name "Pin_29") (type "passive")) + (pin (num "30") (name "Pin_30") (type "passive")) + (pin (num "31") (name "Pin_31") (type "passive")) + (pin (num "32") (name "Pin_32") (type "passive")) + (pin (num "33") (name "Pin_33") (type "passive")) + (pin (num "34") (name "Pin_34") (type "passive")) + (pin (num "35") (name "Pin_35") (type "passive")) + (pin (num "36") (name "Pin_36") (type "passive")) + (pin (num "37") (name "Pin_37") (type "passive")) + (pin (num "38") (name "Pin_38") (type "passive")) + (pin (num "39") (name "Pin_39") (type "passive")) + (pin (num "40") (name "Pin_40") (type "passive")))) + (libpart (lib "Converter_DCDC") (part "TME-0505S") + (description "1W DC/DC converter unregulated, 4.5-5.5V input, 5V output voltage, 200mA output, 1kVDC isolation, SIP-4") + (docs "https://www.tracopower.com/products/tme.pdf") + (footprints + (fp "Converter*DCDC*TRACO*TME*03xxS*05xxS*12xxS*Single*")) + (fields + (field (name "Reference") "U") + (field (name "Value") "TME-0505S") + (field (name "Footprint") "Converter_DCDC:Converter_DCDC_TRACO_TME_03xxS_05xxS_12xxS_Single_THT") + (field (name "Datasheet") "https://www.tracopower.com/products/tme.pdf")) + (pins + (pin (num "1") (name "-Vin") (type "power_in")) + (pin (num "2") (name "+Vin") (type "power_in")) + (pin (num "3") (name "-Vout") (type "power_out")) + (pin (num "4") (name "+Vout") (type "power_out")))) + (libpart (lib "Device") (part "Buzzer") + (description "Buzzer, polarized") + (docs "~") + (footprints + (fp "*Buzzer*")) + (fields + (field (name "Reference") "BZ") + (field (name "Value") "Buzzer") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "-") (type "passive")) + (pin (num "2") (name "+") (type "passive")))) + (libpart (lib "Device") (part "C") + (description "Unpolarized capacitor") + (docs "~") + (footprints + (fp "C_*")) + (fields + (field (name "Reference") "C") + (field (name "Value") "C") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "") (type "passive")) + (pin (num "2") (name "") (type "passive")))) + (libpart (lib "Device") (part "C_Polarized") + (description "Polarized capacitor") + (docs "~") + (footprints + (fp "CP_*")) + (fields + (field (name "Reference") "C") + (field (name "Value") "C_Polarized") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "") (type "passive")) + (pin (num "2") (name "") (type "passive")))) + (libpart (lib "Device") (part "Crystal_GND3") + (description "Three pin crystal, GND on pin 3") + (docs "~") + (footprints + (fp "Crystal*")) + (fields + (field (name "Reference") "Y") + (field (name "Value") "Crystal_GND3") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "1") (type "passive")) + (pin (num "2") (name "2") (type "passive")) + (pin (num "3") (name "3") (type "passive")))) + (libpart (lib "Device") (part "R") + (description "Resistor") + (docs "~") + (footprints + (fp "R_*")) + (fields + (field (name "Reference") "R") + (field (name "Value") "R") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "") (type "passive")) + (pin (num "2") (name "") (type "passive")))) + (libpart (lib "Interface_Optical") (part "TSMP58000") + (description "Photo Module (Amplify&Condition) for PCM Remote Control Systems") + (docs "http://www.vishay.com/docs/82485/tsmp58000.pdf") + (footprints + (fp "Vishay*MINICAST*")) + (fields + (field (name "Reference") "U") + (field (name "Value") "TSMP58000") + (field (name "Footprint") "OptoDevice:Vishay_MINICAST-3Pin") + (field (name "Datasheet") "http://www.vishay.com/docs/82485/tsmp58000.pdf")) + (pins + (pin (num "1") (name "OUT") (type "output")) + (pin (num "2") (name "GND") (type "power_in")) + (pin (num "3") (name "Vs") (type "power_in")))) + (libpart (lib "Jumper") (part "Jumper_3_Bridged12") + (description "Jumper, 3-pole, pins 1+2 closed/bridged") + (docs "~") + (footprints + (fp "Jumper*") + (fp "TestPoint*3Pads*") + (fp "TestPoint*Bridge*")) + (fields + (field (name "Reference") "JP") + (field (name "Value") "Jumper_3_Bridged12") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "A") (type "passive")) + (pin (num "2") (name "C") (type "passive")) + (pin (num "3") (name "B") (type "passive")))) + (libpart (lib "MCU_Microchip_ATtiny") (part "ATtiny84-20SS") + (description "20MHz, 8kB Flash, 512B SRAM, 512B EEPROM, debugWIRE, SOIC-14") + (docs "http://ww1.microchip.com/downloads/en/DeviceDoc/doc8006.pdf") + (footprints + (fp "SOIC*3.9x8.7mm*P1.27mm*")) + (fields + (field (name "Reference") "U") + (field (name "Value") "ATtiny84-20SS") + (field (name "Footprint") "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm") + (field (name "Datasheet") "http://ww1.microchip.com/downloads/en/DeviceDoc/doc8006.pdf")) + (pins + (pin (num "1") (name "VCC") (type "power_in")) + (pin (num "2") (name "XTAL1/PB0") (type "bidirectional")) + (pin (num "3") (name "XTAL2/PB1") (type "bidirectional")) + (pin (num "4") (name "~{RESET}/PB3") (type "bidirectional")) + (pin (num "5") (name "PB2") (type "bidirectional")) + (pin (num "6") (name "PA7") (type "bidirectional")) + (pin (num "7") (name "PA6") (type "bidirectional")) + (pin (num "8") (name "PA5") (type "bidirectional")) + (pin (num "9") (name "PA4") (type "bidirectional")) + (pin (num "10") (name "PA3") (type "bidirectional")) + (pin (num "11") (name "PA2") (type "bidirectional")) + (pin (num "12") (name "PA1") (type "bidirectional")) + (pin (num "13") (name "AREF/PA0") (type "bidirectional")) + (pin (num "14") (name "GND") (type "power_in")))) + (libpart (lib "Switch") (part "SW_SPST") + (description "Single Pole Single Throw (SPST) switch") + (docs "~") + (fields + (field (name "Reference") "SW") + (field (name "Value") "SW_SPST") + (field (name "Datasheet") "~")) + (pins + (pin (num "1") (name "A") (type "passive")) + (pin (num "2") (name "B") (type "passive")))) + (libpart (lib "Transistor_FET") (part "2N7002") + (description "0.115A Id, 60V Vds, N-Channel MOSFET, SOT-23") + (docs "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF") + (footprints + (fp "SOT?23*")) + (fields + (field (name "Reference") "Q") + (field (name "Value") "2N7002") + (field (name "Footprint") "Package_TO_SOT_SMD:SOT-23") + (field (name "Datasheet") "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF")) + (pins + (pin (num "1") (name "G") (type "input")) + (pin (num "2") (name "S") (type "passive")) + (pin (num "3") (name "D") (type "passive")))) + (libpart (lib "dk_Infrared-UV-Visible-Emitters") (part "SFH_4545") + (description "EMITTER IR 950NM 100MA RADIAL") + (docs "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (fields + (field (name "Reference") "D") + (field (name "Value") "SFH_4545") + (field (name "Footprint") "digikey-footprints:LED_5mm_Radial") + (field (name "Datasheet") "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (field (name "Digi-Key_PN") "475-2919-ND") + (field (name "MPN") "SFH 4545") + (field (name "Category") "Optoelectronics") + (field (name "Family") "Infrared, UV, Visible Emitters") + (field (name "DK_Datasheet_Link") "https://dammedia.osram.info/media/resource/hires/osram-dam-2496274/SFH%204545.pdf") + (field (name "DK_Detail_Page") "/product-detail/en/osram-opto-semiconductors-inc/SFH-4545/475-2919-ND/2205955") + (field (name "Description") "EMITTER IR 950NM 100MA RADIAL") + (field (name "Manufacturer") "OSRAM Opto Semiconductors Inc.") + (field (name "Status") "Active")) + (pins + (pin (num "1") (name "") (type "passive")) + (pin (num "2") (name "") (type "passive"))))) + (libraries + (library (logical "Connector") + (uri "/usr/share/kicad/symbols/Connector.kicad_sym")) + (library (logical "Connector_Audio") + (uri "/home/dmitry/Bin/ELECTRONICS/Kicad/Connector_Audio (1).kicad_sym")) + (library (logical "Connector_Generic") + (uri "/usr/share/kicad/symbols/Connector_Generic.kicad_sym")) + (library (logical "Converter_DCDC") + (uri "/usr/share/kicad/symbols/Converter_DCDC.kicad_sym")) + (library (logical "Device") + (uri "/usr/share/kicad/symbols/Device.kicad_sym")) + (library (logical "Interface_Optical") + (uri "/usr/share/kicad/symbols/Interface_Optical.kicad_sym")) + (library (logical "Jumper") + (uri "/usr/share/kicad/symbols/Jumper.kicad_sym")) + (library (logical "MCU_Microchip_ATtiny") + (uri "/usr/share/kicad/symbols/MCU_Microchip_ATtiny.kicad_sym")) + (library (logical "Switch") + (uri "/usr/share/kicad/symbols/Switch.kicad_sym")) + (library (logical "Transistor_FET") + (uri "/usr/share/kicad/symbols/Transistor_FET.kicad_sym")) + (library (logical "dk_Infrared-UV-Visible-Emitters") + (uri "/home/dmitry/Bin/ELECTRONICS/Kicad_OLD_STUFF/KiCad5/digikey-kicad-library/digikey-symbols/dk_Infrared-UV-Visible-Emitters.lib"))) + (nets + (net (code "1") (name "+3.3V") + (node (ref "C3") (pin "1") (pintype "passive")) + (node (ref "J12") (pin "2") (pinfunction "VCC") (pintype "passive")) + (node (ref "J5") (pin "1") (pinfunction "Pin_1") (pintype "passive")) + (node (ref "R10") (pin "1") (pintype "passive")) + (node (ref "R6") (pin "1") (pintype "passive")) + (node (ref "U1") (pin "3") (pinfunction "Vs") (pintype "power_in")) + (node (ref "U2") (pin "1") (pinfunction "VCC") (pintype "power_in"))) + (net (code "2") (name "+5V") + (node (ref "D1") (pin "1") (pintype "passive")) + (node (ref "J4") (pin "4") (pinfunction "Pin_4") (pintype "passive")) + (node (ref "J5") (pin "2") (pinfunction "Pin_2") (pintype "passive")) + (node (ref "J5") (pin "4") (pinfunction "Pin_4") (pintype "passive")) + (node (ref "U3") (pin "2") (pinfunction "+Vin") (pintype "power_in"))) + (net (code "3") (name "GNDD") + (node (ref "BZ1") (pin "2") (pinfunction "+") (pintype "passive")) + (node (ref "C1") (pin "2") (pintype "passive")) + (node (ref "C2") (pin "1") (pintype "passive")) + (node (ref "C3") (pin "2") (pintype "passive")) + (node (ref "D2") (pin "2") (pintype "passive")) + (node (ref "J10") (pin "1") (pinfunction "Pin_1") (pintype "passive")) + (node (ref "J10") (pin "4") (pinfunction "Pin_4") (pintype "passive")) + (node (ref "J11") (pin "G") (pintype "passive")) + (node (ref "J12") (pin "6") (pinfunction "GND") (pintype "passive")) + (node (ref "J13") (pin "8") (pinfunction "Pin_8") (pintype "passive")) + (node (ref "J14") (pin "8") (pinfunction "Pin_8") (pintype "passive")) + (node (ref "J15") (pin "8") (pinfunction "Pin_8") (pintype "passive")) + (node (ref "J4") (pin "1") (pinfunction "Pin_1") (pintype "passive")) + (node (ref "J5") (pin "14") (pinfunction "Pin_14") (pintype "passive")) + (node (ref "J5") (pin "20") (pinfunction "Pin_20") (pintype "passive")) + (node (ref "J5") (pin "25") (pinfunction "Pin_25") (pintype "passive")) + (node (ref "J5") (pin "30") (pinfunction "Pin_30") (pintype "passive")) + (node (ref "J5") (pin "34") (pinfunction "Pin_34") (pintype "passive")) + (node (ref "J5") (pin "39") (pinfunction "Pin_39") (pintype "passive")) + (node (ref "J5") (pin "6") (pinfunction "Pin_6") (pintype "passive")) + (node (ref "J5") (pin "9") (pinfunction "Pin_9") (pintype "passive")) + (node (ref "Q1") (pin "2") (pinfunction "S") (pintype "passive")) + (node (ref "R3") (pin "2") (pintype "passive")) + (node (ref "R4") (pin "1") (pintype "passive")) + (node (ref "SW1") (pin "2") (pinfunction "B") (pintype "passive")) + (node (ref "SW2") (pin "2") (pinfunction "B") (pintype "passive")) + (node (ref "U1") (pin "2") (pinfunction "GND") (pintype "power_in")) + (node (ref "U2") (pin "14") (pinfunction "GND") (pintype "power_in")) + (node (ref "U3") (pin "1") (pinfunction "-Vin") (pintype "power_in")) + (node (ref "Y1") (pin "3") (pinfunction "3") (pintype "passive"))) + (net (code "4") (name "L in") + (node (ref "C5") (pin "2") (pintype "passive")) + (node (ref "J11") (pin "T") (pintype "passive")) + (node (ref "J13") (pin "6") (pinfunction "Pin_6") (pintype "passive")) + (node (ref "J14") (pin "6") (pinfunction "Pin_6") (pintype "passive")) + (node (ref "J15") (pin "6") (pinfunction "Pin_6") (pintype "passive"))) + (net (code "5") (name "MISO") + (node (ref "J12") (pin "1") (pinfunction "MISO") (pintype "passive")) + (node (ref "R9") (pin "2") (pintype "passive")) + (node (ref "U2") (pin "8") (pinfunction "PA5") (pintype "bidirectional"))) + (net (code "6") (name "MOSI") + (node (ref "J12") (pin "4") (pinfunction "MOSI") (pintype "passive")) + (node (ref "R16") (pin "2") (pintype "passive")) + (node (ref "U2") (pin "7") (pinfunction "PA6") (pintype "bidirectional"))) + (net (code "7") (name "Net-(BZ1--)") + (node (ref "BZ1") (pin "1") (pinfunction "-") (pintype "passive")) + (node (ref "R9") (pin "1") (pintype "passive"))) + (net (code "8") (name "Net-(C1-Pad1)") + (node (ref "C1") (pin "1") (pintype "passive")) + (node (ref "C4") (pin "1") (pintype "passive")) + (node (ref "R1") (pin "2") (pintype "passive")) + (node (ref "R3") (pin "1") (pintype "passive"))) + (net (code "9") (name "Net-(C2-Pad2)") + (node (ref "C2") (pin "2") (pintype "passive")) + (node (ref "C5") (pin "1") (pintype "passive")) + (node (ref "R2") (pin "1") (pintype "passive")) + (node (ref "R4") (pin "2") (pintype "passive"))) + (net (code "10") (name "Net-(D1-Pad2)") + (node (ref "D1") (pin "2") (pintype "passive")) + (node (ref "R5") (pin "1") (pintype "passive"))) + (net (code "11") (name "Net-(D2-Pad1)") + (node (ref "D2") (pin "1") (pintype "passive")) + (node (ref "R11") (pin "2") (pintype "passive"))) + (net (code "12") (name "Net-(D3-Pad1)") + (node (ref "D3") (pin "1") (pintype "passive")) + (node (ref "R12") (pin "1") (pintype "passive"))) + (net (code "13") (name "Net-(D4-Pad1)") + (node (ref "D4") (pin "1") (pintype "passive")) + (node (ref "R13") (pin "1") (pintype "passive"))) + (net (code "14") (name "Net-(D5-Pad1)") + (node (ref "D5") (pin "1") (pintype "passive")) + (node (ref "R14") (pin "1") (pintype "passive"))) + (net (code "15") (name "Net-(J1-Pin_1)") + (node (ref "J1") (pin "1") (pinfunction "Pin_1") (pintype "passive")) + (node (ref "J5") (pin "36") (pinfunction "Pin_36") (pintype "passive"))) + (net (code "16") (name "Net-(J2-Pin_1)") + (node (ref "J2") (pin "1") (pinfunction "Pin_1") (pintype "passive")) + (node (ref "J5") (pin "38") (pinfunction "Pin_38") (pintype "passive"))) + (net (code "17") (name "Net-(J3-Pin_1)") + (node (ref "J3") (pin "1") (pinfunction "Pin_1") (pintype "passive")) + (node (ref "J5") (pin "40") (pinfunction "Pin_40") (pintype "passive"))) + (net (code "18") (name "Net-(J4-Pin_2)") + (node (ref "J4") (pin "2") (pinfunction "Pin_2") (pintype "passive")) + (node (ref "J4") (pin "3") (pinfunction "Pin_3") (pintype "passive")) + (node (ref "U2") (pin "10") (pinfunction "PA3") (pintype "bidirectional"))) + (net (code "19") (name "Net-(J5-Pin_8)") + (node (ref "J5") (pin "8") (pinfunction "Pin_8") (pintype "passive")) + (node (ref "R16") (pin "1") (pintype "passive"))) + (net (code "20") (name "Net-(J5-Pin_10)") + (node (ref "J5") (pin "10") (pinfunction "Pin_10") (pintype "passive")) + (node (ref "R15") (pin "1") (pintype "passive"))) + (net (code "21") (name "Net-(J5-Pin_29)") + (node (ref "J5") (pin "29") (pinfunction "Pin_29") (pintype "passive")) + (node (ref "J6") (pin "1") (pinfunction "Pin_1") (pintype "passive"))) + (net (code "22") (name "Net-(J5-Pin_31)") + (node (ref "J5") (pin "31") (pinfunction "Pin_31") (pintype "passive")) + (node (ref "J7") (pin "1") (pinfunction "Pin_1") (pintype "passive"))) + (net (code "23") (name "Net-(J5-Pin_32)") + (node (ref "J5") (pin "32") (pinfunction "Pin_32") (pintype "passive")) + (node (ref "R2") (pin "2") (pintype "passive"))) + (net (code "24") (name "Net-(J5-Pin_33)") + (node (ref "J5") (pin "33") (pinfunction "Pin_33") (pintype "passive")) + (node (ref "R1") (pin "1") (pintype "passive"))) + (net (code "25") (name "Net-(J5-Pin_35)") + (node (ref "J5") (pin "35") (pinfunction "Pin_35") (pintype "passive")) + (node (ref "J8") (pin "1") (pinfunction "Pin_1") (pintype "passive"))) + (net (code "26") (name "Net-(J5-Pin_37)") + (node (ref "J5") (pin "37") (pinfunction "Pin_37") (pintype "passive")) + (node (ref "J9") (pin "1") (pinfunction "Pin_1") (pintype "passive"))) + (net (code "27") (name "Net-(J10-Pin_2)") + (node (ref "J10") (pin "2") (pinfunction "Pin_2") (pintype "passive")) + (node (ref "J11") (pin "S") (pintype "passive"))) + (net (code "28") (name "Net-(J10-Pin_3)") + (node (ref "J10") (pin "3") (pinfunction "Pin_3") (pintype "passive")) + (node (ref "R6") (pin "2") (pintype "passive")) + (node (ref "R7") (pin "2") (pintype "passive")) + (node (ref "SW1") (pin "1") (pinfunction "A") (pintype "passive"))) + (net (code "29") (name "Net-(J13-Pin_1)") + (node (ref "J13") (pin "1") (pinfunction "Pin_1") (pintype "passive")) + (node (ref "J14") (pin "1") (pinfunction "Pin_1") (pintype "passive")) + (node (ref "J15") (pin "1") (pinfunction "Pin_1") (pintype "passive")) + (node (ref "U3") (pin "4") (pinfunction "+Vout") (pintype "power_out"))) + (net (code "30") (name "Net-(J13-Pin_2)") + (node (ref "D3") (pin "2") (pintype "passive")) + (node (ref "D4") (pin "2") (pintype "passive")) + (node (ref "D5") (pin "2") (pintype "passive")) + (node (ref "J13") (pin "2") (pinfunction "Pin_2") (pintype "passive")) + (node (ref "J14") (pin "2") (pinfunction "Pin_2") (pintype "passive")) + (node (ref "J15") (pin "2") (pinfunction "Pin_2") (pintype "passive")) + (node (ref "U3") (pin "3") (pinfunction "-Vout") (pintype "power_out"))) + (net (code "31") (name "Net-(J13-Pin_3)") + (node (ref "J13") (pin "3") (pinfunction "Pin_3") (pintype "passive")) + (node (ref "R12") (pin "2") (pintype "passive"))) + (net (code "32") (name "Net-(J14-Pin_3)") + (node (ref "J14") (pin "3") (pinfunction "Pin_3") (pintype "passive")) + (node (ref "R13") (pin "2") (pintype "passive"))) + (net (code "33") (name "Net-(J15-Pin_3)") + (node (ref "J15") (pin "3") (pinfunction "Pin_3") (pintype "passive")) + (node (ref "R14") (pin "2") (pintype "passive"))) + (net (code "34") (name "Net-(JP1-A)") + (node (ref "JP1") (pin "1") (pinfunction "A") (pintype "passive")) + (node (ref "U2") (pin "11") (pinfunction "PA2") (pintype "bidirectional"))) + (net (code "35") (name "Net-(JP1-C)") + (node (ref "JP1") (pin "2") (pinfunction "C") (pintype "passive")) + (node (ref "U1") (pin "1") (pinfunction "OUT") (pintype "output"))) + (net (code "36") (name "Net-(JP2-A)") + (node (ref "JP2") (pin "1") (pinfunction "A") (pintype "passive")) + (node (ref "U2") (pin "9") (pinfunction "PA4") (pintype "bidirectional"))) + (net (code "37") (name "Net-(JP2-C)") + (node (ref "JP2") (pin "2") (pinfunction "C") (pintype "passive")) + (node (ref "R8") (pin "1") (pintype "passive"))) + (net (code "38") (name "Net-(Q1-D)") + (node (ref "Q1") (pin "3") (pinfunction "D") (pintype "passive")) + (node (ref "R5") (pin "2") (pintype "passive"))) + (net (code "39") (name "Net-(Q1-G)") + (node (ref "Q1") (pin "1") (pinfunction "G") (pintype "input")) + (node (ref "R8") (pin "2") (pintype "passive"))) + (net (code "40") (name "Net-(U2-PA1)") + (node (ref "R7") (pin "1") (pintype "passive")) + (node (ref "U2") (pin "12") (pinfunction "PA1") (pintype "bidirectional"))) + (net (code "41") (name "Net-(U2-PA7)") + (node (ref "R15") (pin "2") (pintype "passive")) + (node (ref "U2") (pin "6") (pinfunction "PA7") (pintype "bidirectional"))) + (net (code "42") (name "Net-(U2-XTAL1{slash}PB0)") + (node (ref "U2") (pin "2") (pinfunction "XTAL1/PB0") (pintype "bidirectional")) + (node (ref "Y1") (pin "2") (pinfunction "2") (pintype "passive"))) + (net (code "43") (name "Net-(U2-XTAL2{slash}PB1)") + (node (ref "U2") (pin "3") (pinfunction "XTAL2/PB1") (pintype "bidirectional")) + (node (ref "Y1") (pin "1") (pinfunction "1") (pintype "passive"))) + (net (code "44") (name "PRi IR in") + (node (ref "J5") (pin "22") (pinfunction "Pin_22") (pintype "passive")) + (node (ref "JP2") (pin "3") (pinfunction "B") (pintype "passive"))) + (net (code "45") (name "R in") + (node (ref "C4") (pin "2") (pintype "passive")) + (node (ref "J11") (pin "R") (pintype "passive")) + (node (ref "J13") (pin "7") (pinfunction "Pin_7") (pintype "passive")) + (node (ref "J14") (pin "7") (pinfunction "Pin_7") (pintype "passive")) + (node (ref "J15") (pin "7") (pinfunction "Pin_7") (pintype "passive"))) + (net (code "46") (name "RPi IR out") + (node (ref "J5") (pin "23") (pinfunction "Pin_23") (pintype "passive")) + (node (ref "JP1") (pin "3") (pinfunction "B") (pintype "passive"))) + (net (code "47") (name "RST") + (node (ref "J12") (pin "5") (pinfunction "~{RST}") (pintype "passive")) + (node (ref "R10") (pin "2") (pintype "passive")) + (node (ref "SW2") (pin "1") (pinfunction "A") (pintype "passive")) + (node (ref "U2") (pin "4") (pinfunction "~{RESET}/PB3") (pintype "bidirectional"))) + (net (code "48") (name "SCK") + (node (ref "J12") (pin "3") (pinfunction "SCK") (pintype "passive")) + (node (ref "R11") (pin "1") (pintype "passive")) + (node (ref "U2") (pin "5") (pinfunction "PB2") (pintype "bidirectional"))) + (net (code "49") (name "unconnected-(J5-Pin_3-Pad3)") + (node (ref "J5") (pin "3") (pinfunction "Pin_3") (pintype "passive"))) + (net (code "50") (name "unconnected-(J5-Pin_5-Pad5)") + (node (ref "J5") (pin "5") (pinfunction "Pin_5") (pintype "passive"))) + (net (code "51") (name "unconnected-(J5-Pin_7-Pad7)") + (node (ref "J5") (pin "7") (pinfunction "Pin_7") (pintype "passive"))) + (net (code "52") (name "unconnected-(J5-Pin_11-Pad11)") + (node (ref "J5") (pin "11") (pinfunction "Pin_11") (pintype "passive"))) + (net (code "53") (name "unconnected-(J5-Pin_12-Pad12)") + (node (ref "J5") (pin "12") (pinfunction "Pin_12") (pintype "passive"))) + (net (code "54") (name "unconnected-(J5-Pin_13-Pad13)") + (node (ref "J5") (pin "13") (pinfunction "Pin_13") (pintype "passive"))) + (net (code "55") (name "unconnected-(J5-Pin_15-Pad15)") + (node (ref "J5") (pin "15") (pinfunction "Pin_15") (pintype "passive"))) + (net (code "56") (name "unconnected-(J5-Pin_16-Pad16)") + (node (ref "J5") (pin "16") (pinfunction "Pin_16") (pintype "passive"))) + (net (code "57") (name "unconnected-(J5-Pin_17-Pad17)") + (node (ref "J5") (pin "17") (pinfunction "Pin_17") (pintype "passive"))) + (net (code "58") (name "unconnected-(J5-Pin_18-Pad18)") + (node (ref "J5") (pin "18") (pinfunction "Pin_18") (pintype "passive"))) + (net (code "59") (name "unconnected-(J5-Pin_19-Pad19)") + (node (ref "J5") (pin "19") (pinfunction "Pin_19") (pintype "passive"))) + (net (code "60") (name "unconnected-(J5-Pin_21-Pad21)") + (node (ref "J5") (pin "21") (pinfunction "Pin_21") (pintype "passive"))) + (net (code "61") (name "unconnected-(J5-Pin_24-Pad24)") + (node (ref "J5") (pin "24") (pinfunction "Pin_24") (pintype "passive"))) + (net (code "62") (name "unconnected-(J5-Pin_26-Pad26)") + (node (ref "J5") (pin "26") (pinfunction "Pin_26") (pintype "passive"))) + (net (code "63") (name "unconnected-(J5-Pin_27-Pad27)") + (node (ref "J5") (pin "27") (pinfunction "Pin_27") (pintype "passive"))) + (net (code "64") (name "unconnected-(J5-Pin_28-Pad28)") + (node (ref "J5") (pin "28") (pinfunction "Pin_28") (pintype "passive"))) + (net (code "65") (name "unconnected-(J13-Pin_4-Pad4)") + (node (ref "J13") (pin "4") (pinfunction "Pin_4") (pintype "passive"))) + (net (code "66") (name "unconnected-(J13-Pin_5-Pad5)") + (node (ref "J13") (pin "5") (pinfunction "Pin_5") (pintype "passive"))) + (net (code "67") (name "unconnected-(J13-Pin_9-Pad9)") + (node (ref "J13") (pin "9") (pinfunction "Pin_9") (pintype "passive"))) + (net (code "68") (name "unconnected-(J13-Pin_10-Pad10)") + (node (ref "J13") (pin "10") (pinfunction "Pin_10") (pintype "passive"))) + (net (code "69") (name "unconnected-(J13-Pin_11-Pad11)") + (node (ref "J13") (pin "11") (pinfunction "Pin_11") (pintype "passive"))) + (net (code "70") (name "unconnected-(J14-Pin_4-Pad4)") + (node (ref "J14") (pin "4") (pinfunction "Pin_4") (pintype "passive"))) + (net (code "71") (name "unconnected-(J14-Pin_5-Pad5)") + (node (ref "J14") (pin "5") (pinfunction "Pin_5") (pintype "passive"))) + (net (code "72") (name "unconnected-(J14-Pin_9-Pad9)") + (node (ref "J14") (pin "9") (pinfunction "Pin_9") (pintype "passive"))) + (net (code "73") (name "unconnected-(J14-Pin_10-Pad10)") + (node (ref "J14") (pin "10") (pinfunction "Pin_10") (pintype "passive"))) + (net (code "74") (name "unconnected-(J14-Pin_11-Pad11)") + (node (ref "J14") (pin "11") (pinfunction "Pin_11") (pintype "passive"))) + (net (code "75") (name "unconnected-(J15-Pin_4-Pad4)") + (node (ref "J15") (pin "4") (pinfunction "Pin_4") (pintype "passive"))) + (net (code "76") (name "unconnected-(J15-Pin_5-Pad5)") + (node (ref "J15") (pin "5") (pinfunction "Pin_5") (pintype "passive"))) + (net (code "77") (name "unconnected-(J15-Pin_9-Pad9)") + (node (ref "J15") (pin "9") (pinfunction "Pin_9") (pintype "passive"))) + (net (code "78") (name "unconnected-(J15-Pin_10-Pad10)") + (node (ref "J15") (pin "10") (pinfunction "Pin_10") (pintype "passive"))) + (net (code "79") (name "unconnected-(J15-Pin_11-Pad11)") + (node (ref "J15") (pin "11") (pinfunction "Pin_11") (pintype "passive"))) + (net (code "80") (name "unconnected-(U2-AREF{slash}PA0-Pad13)") + (node (ref "U2") (pin "13") (pinfunction "AREF/PA0") (pintype "bidirectional"))))) \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..753871d --- /dev/null +++ b/README.md @@ -0,0 +1,54 @@ +#AXOD IR+433MHz Shield. InterplayMedium AXOD microserver Shield 4 RPi Zero and derivatives + +![AXOD IR+433MHz Shield](https://shalnoff.com/pics/2021/AXOD_Shield/rx_tx_1_.png) +![AXOD IR+433MHz Shield](https://shalnoff.com/pics/2021/AXOD_Shield/rx_tx_2_.png) + +Expansion board for Raspberry Pi (Zero and its derivatives) designed to provide advanced functions of AXAX microserver. + +The device provides the ability to receive remote control commands (433Mhz radio), send and receive IR commands, provide independent reset of the main board, as well as interact with additional modules for audio transmission (Bluetooth or other) providing galvanic isolation. + +In addition, a 3.5mm jack provides output of analogue Video and Audio (stereo) signals. + +The analogue part of the expansion board can be removed to ensure compatibility with other non-RPi Zero board versions. + +The beeper provides feedback to the user, which can be convenient when interacting with control units, as well as when the main board hangs up. + +#Hardware + +A more detailed description coming soon + +#Firmware + +Compile and flash +AVR ISP II or compatible programmer required + + cd FIRMWARE/ + ./make + ./flash + +Have fun :) + +#Todo + +- IR transmitter implementation +- Advanced control of BT modules + +## License + +Copyright © 2020 Dmitry Shalnov [interplaymedium.org] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this files except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + + + -- 2.25.1